Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6705fbd8c6 | |||
| 12e20cf5b8 | |||
| 63f13df54f | |||
| 105b1eea1b |
@@ -1,49 +1,29 @@
|
||||
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"],
|
||||
});
|
||||
|
||||
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`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
{children}
|
||||
<script
|
||||
async
|
||||
src="https://cdn.jsdelivr.net/npm/three@r128/build/three.min.js"
|
||||
/>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1391,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -68,18 +68,18 @@ export default function AuroraPage() {
|
||||
description="Three simple steps to join the dawn of daily rewards."
|
||||
features={[
|
||||
{
|
||||
id: "step-1", label: "1", title: "Connect Your Solana Wallet", items: [
|
||||
"Link your wallet in seconds", "No gas fees, fully secure", "Your dawn begins here"
|
||||
id: "step-1", label: "1", title: "The Moment of Dawn", items: [
|
||||
"When daily timeline chaos gives way to quiet moments", "True believers find their real rewards here", "Your dawn begins in the silence after the storm"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "step-2", label: "2", title: "Check In Daily", items: [
|
||||
"Visit once per day", "Automatic entry to giveaway", "Build your streak"
|
||||
id: "step-2", label: "2", title: "Subtle Light Returns", items: [
|
||||
"As dawn breaks, opportunity awakens with it", "Each gentle moment brings new possibilities", "The aurora guides those who wait with patience"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "step-3", label: "3", title: "Claim Your Rewards", items: [
|
||||
"Win SOL instantly", "Withdraw anytime", "Every day brings new chances"
|
||||
id: "step-3", label: "3", title: "Claim the Golden Hour", items: [
|
||||
"When the first light touches the horizon", "Rewards arrive for those who persevered", "The dawn is yours—timeless and ever-renewing"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -200,4 +200,4 @@ export default function AuroraPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user