Skip to content

Commit

Permalink
update title, icon and add meta
Browse files Browse the repository at this point in the history
  • Loading branch information
PBillingsby committed Oct 11, 2024
1 parent 285139d commit 8dda64e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
Binary file removed apps/rewards-dashboard/app/favicon.ico
Binary file not shown.
31 changes: 29 additions & 2 deletions apps/rewards-dashboard/app/layout.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import localFont from "next/font/local";
import "./globals.css";
import Head from "next/head";

const geistSans = localFont({
src: "./fonts/GeistVF.woff",
Expand All @@ -13,13 +14,39 @@ const geistMono = localFont({
});

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Lilypad Community Rewards",
description: "Lilypad Community Rewards",
};

export default function RootLayout({ children }) {
return (
<html lang="en">
<Head>
<title>
Lilypad Community Rewards
</title>
<link rel="icon" href="/LilypadIcon.svg" type="image/svg+xml" />
<meta
name="description"
content="Check out the rewards tables for open-source contributors and Lilypad advocates!"
/>
<meta name="robots" content="index, follow" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<link rel="canonical" href="/" />
<meta
property="og:title"
content="Lilypad Community Rewards"
/>
<meta
property="og:description"
content="Check out the rewards tables for open-source contributors and Lilypad advocates!"
/>
<meta property="og:url" content="/" />
<meta property="og:type" content="website" />
</Head>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
Expand Down

0 comments on commit 8dda64e

Please sign in to comment.