From 50f338d8acdac21c8baba253449de65a26889d77 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:40:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dc4cdc3..cf5ad2f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,13 @@ -import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import "./globals.css"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], - weight: ["200", "300", "400", "500", "600", "700", "800"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Aurora | The Quiet Reward After the Storm", description: "Aurora - A daily reward platform on Solana. Join thousands winning SOL every day."}; + title: 'Aurora', + description: 'The quiet reward after the storm of hype and noise.', +}; export default function RootLayout({ children, @@ -16,14 +15,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} -