diff --git a/app/page.tsx b/app/page.tsx index 46a6484..ed349e2 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -5,6 +5,7 @@ import { Shield, LineChart, Zap, ArrowRight, CheckCircle2, Sparkles } from "luci import { Button } from "@/components/ui/button"; import Link from "next/link"; import { AnimatedStatsSection } from "@/components/animated-stats-section"; +import { isDecember } from "@/lib/utils/christmas"; export const dynamic = 'force-dynamic'; @@ -30,29 +31,50 @@ function formatCurrencyValue(amount: number): string { export default async function Home() { try { const stats = await getPlatformStatsServer(); + const isDec = isDecember(); return ( -
-
+
+
{/* Hero Section */}
-
- - Secure Crypto Payments +
+ + + Secure Crypto Payments +

- The Future of E-commerce Management + The Future of E-commerce Management

- Streamline your online business with our all-in-one platform. Secure payments, order tracking, and analytics in one place. + {isDec + ? 'Spread joy this holiday season with our all-in-one platform. Secure payments, order tracking, and analytics wrapped up in one beautiful package. 🎄' + : 'Streamline your online business with our all-in-one platform. Secure payments, order tracking, and analytics in one place.' + }

- @@ -82,18 +104,38 @@ export default async function Home() { title: "Lightning Fast", description: "Optimized for speed with real-time updates and instant notifications." } - ].map((feature, i) => ( -
-
-
-
- + ].map((feature, i) => { + const christmasColors = ['from-red-500/5', 'from-green-500/5', 'from-yellow-500/5']; + const christmasBorders = ['border-red-500/30', 'border-green-500/30', 'border-yellow-500/30']; + const christmasIcons = ['text-red-400', 'text-green-400', 'text-yellow-400']; + const christmasBgs = ['bg-red-500/10', 'bg-green-500/10', 'bg-yellow-500/10']; + + return ( +
+
+
+
+ +
+

{feature.title}

+

{feature.description}

-

{feature.title}

-

{feature.description}

-
- ))} + ); + })}
{/* Stats Section */} @@ -106,9 +148,13 @@ export default async function Home() { {/* Footer */}