2026-02-14 22:08:43 +01:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { useEffect, useState } from "react";
|
2026-03-28 23:46:45 +01:00
|
|
|
import { Navbar } from "@/features/home/components/Navbar";
|
|
|
|
|
import { Hero } from "@/features/home/components/Hero";
|
|
|
|
|
import dynamic from "next/dynamic";
|
2026-02-17 00:14:38 +01:00
|
|
|
import { Button } from "@/components/ui/button";
|
2026-02-14 22:08:43 +01:00
|
|
|
import { Sparkles } from "lucide-react";
|
|
|
|
|
|
2026-03-28 23:46:45 +01:00
|
|
|
// Dynamically load below-the-fold components to improve initial response time and rendering speed
|
|
|
|
|
const Features = dynamic(() => import("@/features/home/components/Features").then(mod => mod.Features), { ssr: true });
|
|
|
|
|
const HowItWorks = dynamic(() => import("@/features/home/components/HowItWorks").then(mod => mod.HowItWorks), { ssr: true });
|
|
|
|
|
const Stats = dynamic(() => import("@/features/home/components/Stats").then(mod => mod.Stats), { ssr: true });
|
|
|
|
|
const Footer = dynamic(() => import("@/features/home/components/Footer").then(mod => mod.Footer), { ssr: true });
|
|
|
|
|
|
2026-02-14 22:08:43 +01:00
|
|
|
function LoadingScreen({ onComplete }: { onComplete: () => void }) {
|
|
|
|
|
const [progress, setProgress] = useState(0);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const interval = setInterval(() => {
|
|
|
|
|
setProgress((prev) => {
|
|
|
|
|
if (prev >= 100) {
|
|
|
|
|
clearInterval(interval);
|
|
|
|
|
setTimeout(onComplete, 300);
|
|
|
|
|
return 100;
|
|
|
|
|
}
|
|
|
|
|
return prev + Math.random() * 15;
|
|
|
|
|
});
|
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
|
|
return () => clearInterval(interval);
|
|
|
|
|
}, [onComplete]);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="fixed inset-0 z-[100] bg-slate-900 flex flex-col items-center justify-center">
|
|
|
|
|
<div className="relative mb-8">
|
|
|
|
|
<div className="absolute inset-0 bg-blue-500/30 blur-3xl rounded-full animate-pulse" />
|
|
|
|
|
<Sparkles
|
|
|
|
|
className="w-16 h-16 text-blue-500 relative z-10"
|
|
|
|
|
style={{ animation: "spin-slow 3s linear infinite" }}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-17 00:14:38 +01:00
|
|
|
<h1 className="text-2xl font-bold gradient-text mb-8">LexiChain</h1>
|
2026-02-14 22:08:43 +01:00
|
|
|
|
|
|
|
|
<div className="w-64 h-1 bg-slate-800 rounded-full overflow-hidden">
|
|
|
|
|
<div
|
|
|
|
|
className="h-full bg-gradient-to-r from-blue-500 via-violet-500 to-teal-500 rounded-full transition-all duration-200"
|
|
|
|
|
style={{ width: `${Math.min(progress, 100)}%` }}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p className="mt-4 text-sm text-slate-500">
|
|
|
|
|
Loading amazing experience...
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ScrollProgressBar() {
|
|
|
|
|
const [progress, setProgress] = useState(0);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const handleScroll = () => {
|
|
|
|
|
const scrollTop = window.scrollY;
|
|
|
|
|
const docHeight =
|
|
|
|
|
document.documentElement.scrollHeight - window.innerHeight;
|
|
|
|
|
const scrollPercent = (scrollTop / docHeight) * 100;
|
|
|
|
|
setProgress(scrollPercent);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.addEventListener("scroll", handleScroll, { passive: true });
|
|
|
|
|
return () => window.removeEventListener("scroll", handleScroll);
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="fixed top-0 left-0 right-0 z-[60] h-1 bg-transparent">
|
|
|
|
|
<div
|
|
|
|
|
className="h-full bg-gradient-to-r from-blue-500 via-violet-500 to-teal-500 transition-all duration-100"
|
|
|
|
|
style={{ width: `${progress}%` }}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function BackToTop() {
|
|
|
|
|
const [isVisible, setIsVisible] = useState(false);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const handleScroll = () => {
|
|
|
|
|
setIsVisible(window.scrollY > 500);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.addEventListener("scroll", handleScroll, { passive: true });
|
|
|
|
|
return () => window.removeEventListener("scroll", handleScroll);
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const scrollToTop = () => {
|
|
|
|
|
window.scrollTo({ top: 0, behavior: "smooth" });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
2026-02-17 00:14:38 +01:00
|
|
|
<Button
|
2026-02-14 22:08:43 +01:00
|
|
|
onClick={scrollToTop}
|
|
|
|
|
className={`fixed bottom-8 right-8 z-50 w-12 h-12 rounded-full bg-gradient-to-r from-blue-600 to-violet-600 text-white shadow-lg hover:shadow-xl hover:scale-110 transition-all duration-300 flex items-center justify-center ${
|
|
|
|
|
isVisible
|
|
|
|
|
? "opacity-100 translate-y-0"
|
|
|
|
|
: "opacity-0 translate-y-10 pointer-events-none"
|
|
|
|
|
}`}
|
|
|
|
|
aria-label="Back to top"
|
|
|
|
|
>
|
|
|
|
|
<svg
|
|
|
|
|
className="w-6 h-6"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth={2}
|
|
|
|
|
d="M5 10l7-7m0 0l7 7m-7-7v18"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
2026-02-17 00:14:38 +01:00
|
|
|
</Button>
|
2026-02-14 22:08:43 +01:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function HomePage() {
|
|
|
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
|
|
|
|
|
|
|
|
const handleLoadingComplete = () => {
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="relative min-h-screen bg-background text-foreground overflow-x-hidden">
|
2026-03-28 23:46:45 +01:00
|
|
|
{isLoading && <LoadingScreen onComplete={handleLoadingComplete} />}
|
2026-02-14 22:08:43 +01:00
|
|
|
<ScrollProgressBar />
|
|
|
|
|
|
|
|
|
|
<Navbar />
|
|
|
|
|
|
|
|
|
|
<main className="relative">
|
|
|
|
|
<Hero />
|
|
|
|
|
<Features />
|
|
|
|
|
<HowItWorks />
|
|
|
|
|
<Stats />
|
|
|
|
|
<Footer />
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<BackToTop />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|