8 Commits

Author SHA1 Message Date
6180a0d1da Update src/app/page.tsx 2026-03-08 22:40:48 +00:00
50f338d8ac Update src/app/layout.tsx 2026-03-08 22:40:48 +00:00
3b1f4164d9 Merge version_2 into main
Merge version_2 into main
2026-03-08 22:38:22 +00:00
6705fbd8c6 Update src/app/layout.tsx 2026-03-08 22:38:18 +00:00
142346f178 Merge version_2 into main
Merge version_2 into main
2026-03-08 22:37:39 +00:00
12e20cf5b8 Update src/app/page.tsx 2026-03-08 22:37:35 +00:00
63f13df54f Update src/app/layout.tsx 2026-03-08 22:37:35 +00:00
105b1eea1b Merge version_1 into main
Merge version_1 into main
2026-03-08 22:29:28 +00:00
2 changed files with 15 additions and 43 deletions

View File

@@ -1,49 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Inter } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ['latin'] });
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"],
});
export const metadata: Metadata = { 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: { title: 'Aurora',
index: true, description: 'The quiet reward after the storm of hype and noise.',
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."},
}; };
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -68,17 +68,17 @@ export default function AuroraPage() {
description="Three simple steps to join the dawn of daily rewards." description="Three simple steps to join the dawn of daily rewards."
features={[ features={[
{ {
id: "step-1", label: "1", title: "Connect Your Solana Wallet", items: [ id: "step-1", label: "1", title: "Secure Access in Seconds", items: [
"Link your wallet in seconds", "No gas fees, fully secure", "Your dawn begins here" "Link your wallet instantly", "No gas fees, fully secure", "Your dawn begins here"
] ]
}, },
{ {
id: "step-2", label: "2", title: "Check In Daily", items: [ id: "step-2", label: "2", title: "Earn While You Sleep", items: [
"Visit once per day", "Automatic entry to giveaway", "Build your streak" "Automatic daily entry", "Passive reward accumulation", "Build your streak effortlessly"
] ]
}, },
{ {
id: "step-3", label: "3", title: "Claim Your Rewards", items: [ id: "step-3", label: "3", title: "Claim SOL Rewards", items: [
"Win SOL instantly", "Withdraw anytime", "Every day brings new chances" "Win SOL instantly", "Withdraw anytime", "Every day brings new chances"
] ]
} }