Update src/app/layout.tsx

This commit is contained in:
2026-03-08 22:37:35 +00:00
parent 105b1eea1b
commit 63f13df54f

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<body className={`${manrope.variable} antialiased`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
async
src="https://cdn.jsdelivr.net/npm/three@r128/build/three.min.js"
/>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1396,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}