diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index ad39325..978d1b3 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,12 +1,12 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
-import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
-import FooterBase from '@/components/sections/footer/FooterBase';
-import Link from 'next/link';
-import { Sparkles, MapPin } from 'lucide-react';
+import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
+import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
+import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import Link from "next/link";
+import { Sparkles, MapPin } from "lucide-react";
export default function ContactPage() {
return (
@@ -22,21 +22,19 @@ export default function ContactPage() {
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
- {/* Navbar */}
- {/* Contact Hero */}
- {/* Location & Hours */}
- {/* CTA */}
- {/* Footer */}
);
-}
\ No newline at end of file
+}
diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
index e16acc8..1fc1ef0 100644
--- a/src/app/menu/page.tsx
+++ b/src/app/menu/page.tsx
@@ -7,52 +7,47 @@ import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaA
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, MapPin } from "lucide-react";
import Link from "next/link";
+import { useState } from "react";
export default function MenuPage() {
- const menuCategories = [
- {
- name: "Artisan Breads", items: [
- {
- name: "Country Sourdough", description: "Golden crust, airy interior, deeply fermented flavor. 20 hours of slow fermentation.", price: "$6.50"},
- {
- name: "Sesame Baguette", description: "Crispy exterior with sesame seeds, tender interior. Perfect for sharing.", price: "$5.00"},
- {
- name: "Garlic Sourdough", description: "Sourdough infused with roasted garlic and herbs. A savory delight.", price: "$7.00"},
- {
- name: "Ciabatta", description: "Italian-style with open crumb structure. Ideal for sandwiches and dipping.", price: "$4.50"},
- ],
- },
- {
- name: "Sandwiches & Toasts", items: [
- {
- name: "Pig & Fig", description: "Savory pork paired with sweet figs on freshly baked focaccia.", price: "$12.00"},
- {
- name: "Avocado Toast", description: "Creamy avocado, lemon, sea salt on toasted sourdough.", price: "$10.50"},
- {
- name: "Jambon Beurre", description: "French-inspired ham and butter on crispy baguette.", price: "$9.00"},
- ],
- },
- {
- name: "Pastries", items: [
- {
- name: "Butter Scones", description: "Flaky, buttery scones baked fresh daily. Pairs perfectly with coffee.", price: "$3.50"},
- {
- name: "Seasonal Pastries", description: "Rotating selection of croissants, tarts, and Danish pastries.", price: "$4.00-$6.00"},
- ],
- },
- {
- name: "Coffee & Drinks", items: [
- {
- name: "Cortado", description: "Espresso balanced with steamed milk. A Spanish classic.", price: "$4.50"},
- {
- name: "Mexican Mocha", description: "Dark chocolate, espresso, cinnamon, and steamed milk.", price: "$5.50"},
- {
- name: "Biscoff Cookie Latte", description: "Warm, cozy espresso drink with delicate caramel spice.", price: "$6.00"},
- {
- name: "Pour Over Coffee", description: "Single-origin, freshly brewed pour over. Made with precision.", price: "$5.00"},
- ],
- },
- ];
+ const [activeTab, setActiveTab] = useState("breads");
+
+ const menuCategories = {
+ breads: [
+ {
+ name: "Country Sourdough", description: "Golden crust, airy interior, deeply fermented flavor. 20 hours of slow fermentation.", price: "$6.50"},
+ {
+ name: "Sesame Baguette", description: "Crispy exterior with sesame seeds, tender interior. Perfect for sharing.", price: "$5.00"},
+ {
+ name: "Garlic Sourdough", description: "Sourdough infused with roasted garlic and herbs. A savory delight.", price: "$7.00"},
+ {
+ name: "Ciabatta", description: "Italian-style with open crumb structure. Ideal for sandwiches and dipping.", price: "$4.50"},
+ ],
+ sandwiches: [
+ {
+ name: "Pig & Fig", description: "Savory pork paired with sweet figs on freshly baked focaccia.", price: "$12.00"},
+ {
+ name: "Avocado Toast", description: "Creamy avocado, lemon, sea salt on toasted sourdough.", price: "$10.50"},
+ {
+ name: "Jambon Beurre", description: "French-inspired ham and butter on crispy baguette.", price: "$9.00"},
+ ],
+ pastries: [
+ {
+ name: "Butter Scones", description: "Flaky, buttery scones baked fresh daily. Pairs perfectly with coffee.", price: "$3.50"},
+ {
+ name: "Seasonal Pastries", description: "Rotating selection of croissants, tarts, and Danish pastries.", price: "$4.00-$6.00"},
+ ],
+ coffee: [
+ {
+ name: "Cortado", description: "Espresso balanced with steamed milk. A Spanish classic.", price: "$4.50"},
+ {
+ name: "Mexican Mocha", description: "Dark chocolate, espresso, cinnamon, and steamed milk.", price: "$5.50"},
+ {
+ name: "Biscoff Cookie Latte", description: "Warm, cozy espresso drink with delicate caramel spice.", price: "$6.00"},
+ {
+ name: "Pour Over Coffee", description: "Single-origin, freshly brewed pour over. Made with precision.", price: "$5.00"},
+ ],
+ };
return (
+
+
);
-}
\ No newline at end of file
+}