diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..3a49234 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,100 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Coffee, Leaf, Flame, Users, MapPin, Instagram, Facebook, Twitter } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index de2ec20..1e87303 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,8 +29,7 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a5c6c37..b24ea9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1407,4 +1407,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 259cce8..e59f31b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; @@ -30,7 +30,7 @@ export default function CoffeeShopPage() { ); -} \ No newline at end of file +} diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index fd5abaf..82317e7 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,8 +86,10 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} @@ -131,8 +133,10 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} @@ -183,8 +187,10 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} @@ -240,4 +246,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +} diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index c617081..9d5f9e9 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -39,8 +39,10 @@ export default function ShopPage() { setCartOpen(true) }} @@ -83,8 +85,10 @@ export default function ShopPage() { setCartOpen(true) }} @@ -115,4 +119,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +}