diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..7317ce1 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,194 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { TrendingUp, Heart, Users, Sparkles } from 'lucide-react'; + +export default function AboutPage() { + 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..f4d00d5 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,177 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ console.log('Newsletter signup:', email)} + /> +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/directions/page.tsx b/src/app/directions/page.tsx new file mode 100644 index 0000000..f4a4672 --- /dev/null +++ b/src/app/directions/page.tsx @@ -0,0 +1,155 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function DirectionsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/lookbook/page.tsx b/src/app/lookbook/page.tsx new file mode 100644 index 0000000..8dedbd1 --- /dev/null +++ b/src/app/lookbook/page.tsx @@ -0,0 +1,126 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function LookbookPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 193fea7..bdf4c71 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,8 @@ export default function LandingPage() { { name: "Collections", id: "collections" }, { name: "Why Us", id: "why-us" }, { name: "Gallery", id: "gallery" }, - { name: "Visit Us", id: "visit" }, + { name: "Lookbook", id: "/lookbook" }, + { name: "Directions", id: "/directions" }, { name: "Contact", id: "contact" } ]} /> @@ -252,7 +253,9 @@ export default function LandingPage() { { label: "About Dream Co", href: "#why-us" }, { label: "Why Choose Us", href: "#why-us" }, { label: "Customer Reviews", href: "#trust" }, - { label: "Gallery", href: "#gallery" } + { label: "Gallery", href: "#gallery" }, + { label: "Lookbook", href: "/lookbook" }, + { label: "Directions", href: "/directions" } ] } ]} @@ -261,4 +264,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file