chore(landing): general cleanup + ui touchup

This commit is contained in:
cnrad
2024-11-11 22:16:26 -05:00
parent 8ba5d6544c
commit 4a9c696be4
17 changed files with 635 additions and 1344 deletions

View File

@@ -4,35 +4,28 @@ import "./globals.css";
import { Poppins } from "next/font/google";
const poppins = Poppins({
weight: ["400", "500", "600", "700"],
subsets: ["latin"],
display: "swap",
weight: ["400", "500", "600", "700"],
subsets: ["latin"],
display: "swap",
});
export const metadata: Metadata = {
title: "Lanyard for GitHub Profile",
description: "Utilize Lanyard to display your Discord Presence in your GitHub Profile",
openGraph: {
title: "Lanyard for GitHub Profile",
description:
"Utilize Lanyard to display your Discord Presence in your GitHub Profile",
openGraph: {
title: "Lanyard for GitHub Profile",
description:
"Utilize Lanyard to display your Discord Presence in your GitHub Profile",
},
description: "Utilize Lanyard to display your Discord Presence in your GitHub Profile",
},
};
export default function RootLayout({
children,
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${poppins.className} antialiased`}
suppressHydrationWarning
>
{children}
</body>
</html>
);
return (
<html lang="en">
<body className={`${poppins.className} antialiased`}>{children}</body>
</html>
);
}