diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..63d7a77 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,109 @@ +'use client'; + +import NavbarCentered from '@/components/ui/NavbarCentered'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; +import FeaturesLabeledList from '@/components/sections/features/FeaturesLabeledList'; +import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; +import FooterBasic from '@/components/sections/footer/FooterBasic'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; + +export default function Home() { + const navItems = [ + { name: "About", href: "#about", id: "about" }, + { name: "Features", href: "#features", id: "features" }, + { name: "Contact", href: "#contact", id: "contact" }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file