diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
index eab2d9a..febe3b4 100644
--- a/src/app/menu/page.tsx
+++ b/src/app/menu/page.tsx
@@ -27,8 +27,6 @@ export default function MenuPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
- { name: "About", id: "/about" },
- { name: "Order", id: "/order" },
{ name: "Visit", id: "/visit" },
]}
brandName="Teddy's Cafe"
@@ -41,7 +39,7 @@ export default function MenuPage() {
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
- title="Full Menu"
+ title="Our Menu"
description="Explore all our fusion options."
products={[
{ id: "pr1", name: "Classic Teriyaki", price: "$10.50", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-vegetables-sesame-sauce_140725-424.jpg" },
@@ -51,28 +49,13 @@ export default function MenuPage() {
/>
-
-
-
-
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 79f9af3..eec4955 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,8 +30,6 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
- { name: "About", id: "/about" },
- { name: "Order", id: "/order" },
{ name: "Visit", id: "/visit" },
]}
brandName="Teddy's Cafe"
@@ -63,8 +61,8 @@ export default function LandingPage() {
{ id: "2", brand: "Signature", name: "Chicken Teriyaki Bowl", price: "$9.99", rating: 5, reviewCount: "150+", imageSrc: "http://img.b2bpic.net/free-photo/burger-served-with-french-fries-sauces-plate-rustic-table_114579-1463.jpg" },
{ id: "3", brand: "Crowd Pleaser", name: "Ninza Fries", price: "$10.99", rating: 4, reviewCount: "120+", imageSrc: "http://img.b2bpic.net/free-photo/tasty-french-fries-dark-background_1150-45305.jpg" }
]}
- title="Popular Favorites"
- description="Taste the best of our Japanese-American fusion kitchen."
+ title="Our Menu"
+ description="Explore our curated selection of fusion favorites."
/>
@@ -76,9 +74,7 @@ export default function LandingPage() {
testimonials={[
{ id: "1", name: "Martin W.", handle: "@martinw", testimonial: "Amazing delivery driver!!", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg" },
{ id: "2", name: "bussibee", handle: "@bussibee", testimonial: "Fresh food, great burgers!", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5048.jpg" },
- { id: "3", name: "Sarah J.", handle: "@sarahj", testimonial: "The teriyaki sauce is the best in Anaheim.", imageSrc: "http://img.b2bpic.net/free-photo/people_273609-1727.jpg" },
- { id: "4", name: "Mike R.", handle: "@miker", testimonial: "So many options, and everything is delicious.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-joyful-african-student-woman-with-dark-wavy-hair-green-cardigan-sitting-cafe-drinking-cup-coffee-smiling-camera-woman-waiting-her-boyfriend-after-university_176420-12329.jpg" },
- { id: "5", name: "Jenny L.", handle: "@jennyl", testimonial: "My go-to spot for family dinner.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-young-bald-call-center-man-wearing-headset-sitting-desk-with-work-tools-doing-ok-sign-showing-thumb-up-laptop-isolated-white_141793-84103.jpg" }
+ { id: "3", name: "Sarah J.", handle: "@sarahj", testimonial: "The teriyaki sauce is the best in Anaheim.", imageSrc: "http://img.b2bpic.net/free-photo/people_273609-1727.jpg" }
]}
title="Loved by Neighbors"
description="See why our customers keep coming back."
@@ -93,8 +89,8 @@ export default function LandingPage() {
title="Cafe Packages"
description="Perfect for families or groups."
plans={[
- { id: "p1", badge: "Starter", price: "$25", subtitle: "Perfect for individuals", buttons: [{ text: "Select Plan", href: "/order" }], features: ["1 Entree", "1 Drink", "Side dish"] },
- { id: "p2", badge: "Family", price: "$85", subtitle: "Best for groups", buttons: [{ text: "Select Plan", href: "/order" }], features: ["4 Entrees", "4 Drinks", "Large shared fries", "Dessert"] }
+ { id: "p1", badge: "Starter", price: "$25", subtitle: "Perfect for individuals", buttons: [{ text: "Select Plan", href: "/visit" }], features: ["1 Entree", "1 Drink", "Side dish"] },
+ { id: "p2", badge: "Family", price: "$85", subtitle: "Best for groups", buttons: [{ text: "Select Plan", href: "/visit" }], features: ["4 Entrees", "4 Drinks", "Large shared fries", "Dessert"] }
]}
/>
@@ -119,8 +115,7 @@ export default function LandingPage() {
logoText="Teddy's Cafe"
columns={[
{ title: "Menu", items: [{ label: "Appetizers", href: "/menu" }, { label: "Burgers", href: "/menu" }, { label: "Sushi", href: "/menu" }] },
- { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Visit Us", href: "/visit" }] },
- { title: "Support", items: [{ label: "Order Online", href: "/order" }, { label: "Contact", href: "/visit" }] }
+ { title: "Company", items: [{ label: "Visit Us", href: "/visit" }] }
]}
/>
diff --git a/src/app/visit/page.tsx b/src/app/visit/page.tsx
index 41871f6..5bf8f7b 100644
--- a/src/app/visit/page.tsx
+++ b/src/app/visit/page.tsx
@@ -5,7 +5,6 @@ import ReactLenis from "lenis/react";
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function VisitPage() {
return (
@@ -27,8 +26,6 @@ export default function VisitPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
- { name: "About", id: "/about" },
- { name: "Order", id: "/order" },
{ name: "Visit", id: "/visit" },
]}
brandName="Teddy's Cafe"
@@ -52,24 +49,13 @@ export default function VisitPage() {
/>
-
-
-
-