Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add metadata + domain topology #29

Merged
merged 5 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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