diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8431bab..d624d27 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,34 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import { Manrope } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], + weight: ["200", "300", "400", "500", "600", "700", "800"], }); export const metadata: Metadata = { - title: "Aurora — Solana Daily Giveaway | The Quiet Reward", description: "Aurora: The quiet reward after the storm of hype. Daily Solana giveaways with transparent, fair draws. Connect wallet, check in daily, claim SOL rewards.", keywords: "Solana, giveaway, daily rewards, crypto, SOL, blockchain, transparent", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Aurora — Solana Daily Giveaway", description: "The quiet reward after the storm. Join 50K+ members earning daily SOL through fair, transparent giveaways.", type: "website", siteName: "Aurora"}, - twitter: { - card: "summary_large_image", title: "Aurora — Daily Solana Rewards", description: "The quiet reward after the noise. Join the dawn of daily SOL giveaways on Solana."}, -}; + title: "Aurora | The Quiet Reward After the Storm", description: "Aurora - A daily reward platform on Solana. Join thousands winning SOL every day."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +