@@ -79,15 +72,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
features={[
- {
- id: "f1", title: "Signature Roasts", author: "Barista Picks", description: "Hand-picked beans roasted daily for maximum freshness.", tags: ["Espresso", "Pour-over"],
- imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-dark-background_1303-14967.jpg"},
- {
- id: "f2", title: "Fresh Pastries", author: "Baking Team", description: "Daily baked goods made with organic ingredients.", tags: ["Bakery", "Organic"],
- imageSrc: "http://img.b2bpic.net/free-photo/croissants-tray_23-2148784784.jpg"},
- {
- id: "f3", title: "Cozy Environment", author: "Design Team", description: "The perfect spot to work, study, or meet friends.", tags: ["Lounge", "Wifi"],
- imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-interior_1150-13645.jpg"},
+ { id: "f1", title: "Signature Roasts", author: "Barista Picks", description: "Hand-picked beans roasted daily for maximum freshness.", tags: ["Espresso", "Pour-over"], imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-dark-background_1303-14967.jpg" },
+ { id: "f2", title: "Fresh Pastries", author: "Baking Team", description: "Daily baked goods made with organic ingredients.", tags: ["Bakery", "Organic"], imageSrc: "http://img.b2bpic.net/free-photo/croissants-tray_23-2148784784.jpg" },
+ { id: "f3", title: "Cozy Environment", author: "Design Team", description: "The perfect spot to work, study, or meet friends.", tags: ["Lounge", "Wifi"], imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-interior_1150-13645.jpg" },
]}
title="Our Menu Highlights"
description="From light roasts to decadent treats, discover your new favorite."
@@ -100,15 +87,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
metrics={[
- {
- id: "m1", value: "100%", title: "Fair Trade", items: ["Ethically sourced", "Direct trade"],
- },
- {
- id: "m2", value: "500+", title: "Cups Served", items: ["Daily average", "Happy guests"],
- },
- {
- id: "m3", value: "15+", title: "Roast Varieties", items: ["From around world", "Small batch"],
- },
+ { id: "m1", value: "100%", title: "Fair Trade", items: ["Ethically sourced", "Direct trade"] },
+ { id: "m2", value: "500+", title: "Cups Served", items: ["Daily average", "Happy guests"] },
+ { id: "m3", value: "15+", title: "Roast Varieties", items: ["From around world", "Small batch"] },
]}
title="Why We Are Unique"
description="Commitment to quality that speaks for itself."
@@ -122,12 +103,9 @@ export default function LandingPage() {
gridVariant="one-large-right-three-stacked-left"
useInvertedBackground={true}
members={[
- {
- id: "t1", name: "Maria Santos", role: "Head Barista", imageSrc: "http://img.b2bpic.net/free-photo/barista-serving-coffee-with-smile_23-2148744131.jpg"},
- {
- id: "t2", name: "James Lee", role: "Pastry Chef", imageSrc: "http://img.b2bpic.net/free-photo/chef-baking-bread_23-2148744120.jpg"},
- {
- id: "t3", name: "Elena Rossi", role: "Community Lead", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-cafe_23-2148744111.jpg"},
+ { id: "t1", name: "Maria Santos", role: "Head Barista", imageSrc: "http://img.b2bpic.net/free-photo/barista-serving-coffee-with-smile_23-2148744131.jpg" },
+ { id: "t2", name: "James Lee", role: "Pastry Chef", imageSrc: "http://img.b2bpic.net/free-photo/chef-baking-bread_23-2148744120.jpg" },
+ { id: "t3", name: "Elena Rossi", role: "Community Lead", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-cafe_23-2148744111.jpg" },
]}
title="The Coffee Family"
description="Our dedicated team makes it all happen."
@@ -151,12 +129,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
faqs={[
- {
- id: "q1", title: "Do you offer non-dairy milk?", content: "Yes! We offer almond, soy, oat, and coconut milk options."},
- {
- id: "q2", title: "Can I reserve a table for group?", content: "For groups larger than 5, please contact us 24 hours in advance."},
- {
- id: "q3", title: "Are your beans available for purchase?", content: "Absolutely, we sell whole beans and ground coffee by the bag."},
+ { id: "q1", title: "Do you offer non-dairy milk?", content: "Yes! We offer almond, soy, oat, and coconut milk options." },
+ { id: "q2", title: "Can I reserve a table for group?", content: "For groups larger than 5, please contact us 24 hours in advance." },
+ { id: "q3", title: "Are your beans available for purchase?", content: "Absolutely, we sell whole beans and ground coffee by the bag." },
]}
title="Cafe FAQs"
description="Common questions from our coffee lovers."
@@ -167,16 +142,13 @@ export default function LandingPage() {
@@ -184,10 +156,8 @@ export default function LandingPage() {
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
new file mode 100644
index 0000000..83b51fe
--- /dev/null
+++ b/src/app/pricing/page.tsx
@@ -0,0 +1,59 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+
+export default function PricingPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file