mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-25 20:00:40 +00:00
35 lines
905 B
TypeScript
35 lines
905 B
TypeScript
import type { Metadata } from "next";
|
|
import { GoogleAnalytics } from "@next/third-parties/google";
|
|
import "./globals.css";
|
|
import { CSideScript } from "@c-side/next";
|
|
import { Poppins } from "next/font/google";
|
|
|
|
const poppins = Poppins({
|
|
weight: ["400", "500", "600", "700"],
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Lanyard for GitHub Profile",
|
|
description: "Display your Discord Presence anywhere, using Lanyard",
|
|
openGraph: {
|
|
title: "Lanyard for GitHub Profile",
|
|
description: "Display your Discord Presence anywhere, using Lanyard",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<CSideScript />
|
|
<body className={`${poppins.className} antialiased`}>{children}</body>
|
|
<GoogleAnalytics gaId="G-89E40D5N6D" />
|
|
</html>
|
|
);
|
|
}
|