Skip to content

Commit

Permalink
feat: add metadata + domain topology (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfrye authored Feb 14, 2024
1 parent b525eea commit 679a421
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,25 @@ import "@dotcom/styles/globals.css";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
metadataBase: new URL('https://victorfrye.com'),
title: "Victor Frye",
description: "Hello from Grand Rapids! I'm Victor Frye, your friendly neighborhood technologist.",
keywords: ["victor frye", "grand rapids", "technologist", "software engineer", "web developer", "full stack", "next.js", "react", "typescript", "javascript", "css", "html", ".net", "c#", "azure", "devops", "github"],
icons: ["images/profile.png"],
authors: {
name: "Victor Frye",
url: "https://victorfrye.com/",
},
alternates: {
canonical: "/",
},
openGraph: {
type: "website",
url: "/",
title: "Victor Frye",
description: "Your friendly neighborhood technologist",
siteName: "VictorFrye.COM",
}
};

export default function RootLayout({
Expand Down
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { BrandVariants, FluentProvider, Theme, createDarkTheme, createLightTheme
import '@dotcom/styles/globals.css';
import Footer from "@dotcom/components/shared/footer";
import Header from "@dotcom/components/shared/header";
import About from "@dotcom/components/content/about";
import Connect from "@dotcom/components/content/connect";
import About from "@dotcom/components/home/about";
import Connect from "@dotcom/components/home/connect";

const myBrand: BrandVariants = {
10: "#030303",
Expand Down

0 comments on commit 679a421

Please sign in to comment.