5 Commits

Author SHA1 Message Date
73e917e5c4 Merge version_3 into main
Merge version_3 into main
2026-03-08 22:40:52 +00:00
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
142346f178 Merge version_2 into main
Merge version_2 into main
2026-03-08 22:37:39 +00:00
2 changed files with 16 additions and 23 deletions

View File

@@ -1,14 +1,13 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Manrope } from "next/font/google"; import { Inter } from 'next/font/google';
import "./globals.css"; import './globals.css';
const manrope = Manrope({ const inter = Inter({ subsets: ['latin'] });
variable: "--font-manrope", subsets: ["latin"],
weight: ["200", "300", "400", "500", "600", "700", "800"],
});
export const metadata: Metadata = { 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({ export default function RootLayout({
children, children,
@@ -16,14 +15,8 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<body className={`${manrope.variable} antialiased`}> <body className={inter.className}>{children}
{children}
<script
async
src="https://cdn.jsdelivr.net/npm/three@r128/build/three.min.js"
/>
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `

View File

@@ -68,18 +68,18 @@ 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: "The Moment of Dawn", items: [ id: "step-1", label: "1", title: "Secure Access in Seconds", 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" "Link your wallet instantly", "No gas fees, fully secure", "Your dawn begins here"
] ]
}, },
{ {
id: "step-2", label: "2", title: "Subtle Light Returns", items: [ id: "step-2", label: "2", title: "Earn While You Sleep", items: [
"As dawn breaks, opportunity awakens with it", "Each gentle moment brings new possibilities", "The aurora guides those who wait with patience" "Automatic daily entry", "Passive reward accumulation", "Build your streak effortlessly"
] ]
}, },
{ {
id: "step-3", label: "3", title: "Claim the Golden Hour", items: [ id: "step-3", label: "3", title: "Claim SOL Rewards", items: [
"When the first light touches the horizon", "Rewards arrive for those who persevered", "The dawn is yours—timeless and ever-renewing" "Win SOL instantly", "Withdraw anytime", "Every day brings new chances"
] ]
} }
]} ]}
@@ -200,4 +200,4 @@ export default function AuroraPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }