From b577037de90c9b833153c9457100d260240617b9 Mon Sep 17 00:00:00 2001 From: Nadiem Date: Thu, 6 Jun 2024 10:58:36 +0200 Subject: [PATCH 1/3] Update page title and description --- apps/info-dashboard/src/app/layout.tsx | 87 +- pnpm-lock.yaml | 5093 +++++++++++------------- 2 files changed, 2323 insertions(+), 2857 deletions(-) diff --git a/apps/info-dashboard/src/app/layout.tsx b/apps/info-dashboard/src/app/layout.tsx index 42c25b4..6caaf2b 100644 --- a/apps/info-dashboard/src/app/layout.tsx +++ b/apps/info-dashboard/src/app/layout.tsx @@ -9,57 +9,58 @@ import ReactQueryProvider from "@/components/ReactQueryProvider"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Lilypad Network Leaderboard", + 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", - }, + { 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} -