From e370a66bb6798a74d433c3b692a4edf2a44d080d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:10:01 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 249 +++-------------------------------------------- 1 file changed, 11 insertions(+), 238 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 760df25..5a5c69b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,19 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; -import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import TeamCardTen from "@/components/sections/team/TeamCardTen"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Award, CheckCircle, DollarSign, HelpCircle, Linkedin, MapPin, Twitter, Zap, Github, TrendingUp } from "lucide-react"; +import { useState } from "react"; +import LoginSignupPage from "./auth/page"; +import DashboardPage from "./dashboard/page"; + +export default function HomePage() { + const [isAuthenticated, setIsAuthenticated] = useState(false); -export default function LandingPage() { return ( -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + {!isAuthenticated ? ( + setIsAuthenticated(true)} /> + ) : ( + setIsAuthenticated(false)} /> + )}
); }