diff --git a/src/app/page.tsx b/src/app/page.tsx index e69de29..efc3336 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -0,0 +1,155 @@ +"use client"; + +import React from "react"; +import { ThemeProvider } from "@/components/context/ThemeContext"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; +import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import TextBox from "@/components/Textbox"; +import ButtonIconArrow from "@/components/button/ButtonIconArrow"; +import { Sparkles, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send, CheckCircle, X } from "lucide-react"; + +const Dashboard = ({ title, stats, logoIcon: LogoIcon, sidebarItems, buttons, listItems, imageSrc, searchPlaceholder, chartTitle, chartData, listTitle, videoSrc, imageAlt, videoAriaLabel, className, containerClassName, sidebarClassName, statClassName, chartClassName, listClassName }) => { + return ( +
+
+
+

{title}

+
+
+
+ ); +}; + +export default function Home() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, + ]; + + return ( + + + +
+ +
+ +
+ + +
+ +
+
+ +
+ +
+ +
+ +
+
+ ); +}