Skip to content

Commit

Permalink
chore: more seo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham committed Aug 13, 2023
1 parent b3b863b commit 55c01e4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@ export const NavBar = () => {
<Link
href="/"
// ref={focusedRef}
className="focus:outline-none"
onClick={() => checkPath("/")}
>
&lt; Home /&gt;
</Link>
<Link
href="/projects"
// ref={focusedRef}
className="focus:outline-none"
onClick={() => checkPath("/projects")}
>
&lt; Projects /&gt;
Expand All @@ -73,4 +75,4 @@ export const NavBar = () => {
</Dialog>
</>
);
};
};
8 changes: 6 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const raleway = Raleway({
export const metadata: Metadata = {
title: "Goudham Suresh",
description:
"Software Engineer @ BBC, Finalist for Scottish Graduate Apprentice of the Year 2023, and Core Maintainer @ Catppuccin",
"I am a software engineer by day, and an open source enthusiast by night. This is my corner of the internet where I write about my experiences, projects, and more.",
keywords: ["Next.js", "React", "Typescript", "Catppuccin", "Goudham"],
colorScheme: "light dark",
metadataBase: new URL(
Expand All @@ -26,13 +26,17 @@ export const metadata: Metadata = {
process.env.NEXT_PUBLIC_IS_PREVIEW ? " (Preview)" : ""
}`,
description:
"Software Engineer @ BBC, Finalist for Scottish Graduate Apprentice of the Year 2023, and Core Maintainer @ Catppuccin",
"I am a software engineer by day, and an open source enthusiast by night. This is my corner of the internet where I write about my experiences, projects, and more.",
locale: "en_GB",
},
twitter: {
creator: "@RealGoudham",
card: "summary_large_image",
},
themeColor: [
{ media: "(prefers-color-scheme: dark)", color: "#11111b" },
{ media: "(prefers-color-scheme: light)", color: "#eff1f5" },
],
};

export default function RootLayout({
Expand Down
4 changes: 4 additions & 0 deletions app/projects/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ import { Metadata } from "next";

export const metadata: Metadata = {
title: "Projects by Goudham Suresh",
description:
"I am a software engineer by day, and an open source enthusiast by night. This is my corner of the internet where I write about my experiences, projects, and more.",
openGraph: {
url: process.env.NEXT_PUBLIC_IS_PREVIEW
? "https://preview.goudham.com/projects"
: "https://goudham.com/projects",
title: `Projects by Goudham Suresh${
process.env.NEXT_PUBLIC_IS_PREVIEW ? " (Preview)" : ""
}`,
description:
"I am a software engineer by day, and an open source enthusiast by night. This is my corner of the internet where I write about my experiences, projects, and more.",
},
};

Expand Down

0 comments on commit 55c01e4

Please sign in to comment.