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)} /> + )}
); }