From 8ed482c9fa7a3db283cec65bc29ba7f77aac75b9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:05:24 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 47f1c1a..1b97c23 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,16 @@ import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Sparkles, CheckCircle, Award, MapPin, Calendar } from "lucide-react"; +import { Sparkles, CheckCircle, Award, MapPin, Calendar, Moon, Sun } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [isDarkMode, setIsDarkMode] = useState(false); + + const toggleTheme = () => { + setIsDarkMode(!isDarkMode); + }; + return ( + {isDarkMode ? ( + + ) : ( + + )} + + } />