diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..c2754c1 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,142 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, Facebook, Globe, Heart, Instagram, Leaf, Mail, Sparkles, Twitter, Users } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..50e79e4 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,119 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, BookOpen, Coffee, Facebook, Instagram, Mail, Twitter } from 'lucide-react'; + +export default function BlogPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..ab519cc --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,110 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Facebook, Heart, Instagram, Mail, MapPin, MessageSquare, Phone, Twitter } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..7b656f8 --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,136 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Coffee, Facebook, HelpCircle, Instagram, Mail, Twitter } from 'lucide-react'; + +export default function FAQPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 864ef3a..5b5ed32 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,11 +29,11 @@ export default function LandingPage() { diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..a2c4853 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,149 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, Coffee, Facebook, Gift, Instagram, Sparkles, Twitter } from 'lucide-react'; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}