diff --git a/apps/info-dashboard/src/app/layout.tsx b/apps/info-dashboard/src/app/layout.tsx index 42c25b4..7b2327c 100644 --- a/apps/info-dashboard/src/app/layout.tsx +++ b/apps/info-dashboard/src/app/layout.tsx @@ -6,60 +6,61 @@ import NavBar from "@/components/NavBar"; import Footer from "@/components/Footer"; import ReactQueryProvider from "@/components/ReactQueryProvider"; -const inter = Inter({ subsets: ["latin"] }); +const INTER = Inter({ subsets: ["latin"] }); -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", +export const METADATA: Metadata = { + title: "Lilypad Network ", + description: + "Track your progress and strive for the top spot on the Lilypad Network Leaderboard. ", }; /* TODO check if the telegram is correct */ -const socialLinks = [ - { href: "https://twitter.com/lilypad_tech", iconUrl: "/x.svg" }, - { - href: "https://discord.gg/zWYTNZqB", - iconUrl: "/discord.svg", - }, - { - href: "https://t.me/lilypadnetwork", - iconUrl: "/telegram.svg", - }, - { - href: "https://github.com/Lilypad-Tech", - iconUrl: "/github.svg", - }, - { - href: "https://www.linkedin.com/company/lilypad-network/", - iconUrl: "/linkedin.svg", - }, - { - href: "https://www.youtube.com/@LilypadNetwork/featured", - iconUrl: "/youtube.svg", - }, +const SOCIALLINKS = [ + { href: "https://twitter.com/lilypad_tech", iconUrl: "/x.svg" }, + { + href: "https://discord.gg/zWYTNZqB", + iconUrl: "/discord.svg", + }, + { + href: "https://t.me/lilypadnetwork", + iconUrl: "/telegram.svg", + }, + { + href: "https://github.com/Lilypad-Tech", + iconUrl: "/github.svg", + }, + { + href: "https://www.linkedin.com/company/lilypad-network/", + iconUrl: "/linkedin.svg", + }, + { + href: "https://www.youtube.com/@LilypadNetwork/featured", + iconUrl: "/youtube.svg", + }, ]; export default function RootLayout({ - children, + children, }: Readonly<{ - children: React.ReactNode; + children: React.ReactNode; }>) { - return ( - - - - - {children} -