mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-26 04:17:19 +00:00
chore(landing): general cleanup + ui touchup
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user