Skip to content

Commit

Permalink
fix: change top level consts to use ALL_CAPS
Browse files Browse the repository at this point in the history
  • Loading branch information
NadiemM committed Jun 10, 2024
1 parent 50d0561 commit a53a068
Show file tree
Hide file tree
Showing 4 changed files with 2,997 additions and 2,521 deletions.
10 changes: 5 additions & 5 deletions apps/info-dashboard/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ 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 = {
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 = [
const SOCIALLINKS = [
{ href: "https://twitter.com/lilypad_tech", iconUrl: "/x.svg" },
{
href: "https://discord.gg/zWYTNZqB",
Expand Down Expand Up @@ -47,7 +47,7 @@ export default function RootLayout({
}>) {
return (
<html className="uui-dark" lang={languageTag()}>
<body className={inter.className}>
<body className={INTER.className}>
<ReactQueryProvider>
<NavBar />
{children}
Expand All @@ -57,7 +57,7 @@ export default function RootLayout({
alt: "Lilypad logo",
href: "#top",
}}
socialLinks={socialLinks}
socialLinks={SOCIALLINKS}
/>
</ReactQueryProvider>
</body>
Expand Down
Loading

0 comments on commit a53a068

Please sign in to comment.