diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..67efb8b --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..32e6ffa --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 1cd5ddc..3117bd8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,185 +1,34 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Feather, Palette, User } from "lucide-react"; -export default function LandingPage() { +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
); -} +} \ No newline at end of file