From 705afb038d7bdf475ecebe8afbcb2ad98edfa48e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 00:23:38 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 105f222..7a98968 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { useState, useEffect } from "react"; import AboutMetric from '@/components/sections/about/AboutMetric'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; @@ -14,6 +15,28 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia import { Award, CheckCircle, MessageCircle, Zap } from "lucide-react"; export default function LandingPage() { + const [loading, setLoading] = useState(true); + + useEffect(() => { + const timer = setTimeout(() => setLoading(false), 1200); + return () => clearTimeout(timer); + }, []); + + if (loading) { + return ( +
+
+
+ N11 +
+
+
+
+
+
+ ); + } + return ( ); -} +} \ No newline at end of file