From 3ed8b457d03e47104a43890a4afb0206631cfccc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:19:14 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6d1c180..4f1450a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Poppins } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const inter = Inter({ @@ -15,19 +15,19 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "Cafe Zam Zam – Family Restaurant in Malad West | Best Indian & Chinese Cuisine", description: "Cafe Zam Zam is your favorite family restaurant in Malad West, Mumbai. Enjoy authentic Indian & Chinese cuisine, private booths, and signature dessert drinks. Call 097699 63555 to reserve your table today!", keywords: "family restaurant Malad West, Indian Chinese restaurant, private dining Mumbai, best restaurant Malad, dessert drinks, non-veg restaurant", metadataBase: new URL("https://cafezamzam.com"), + title: "Foodinn Family Restaurant & Banquet Hall | Best Cuisine in Town", description: "Foodinn Family Restaurant & Banquet Hall offers authentic cuisine, private dining, and professional event hosting. Perfect for family dinners, celebrations, and corporate events. Reserve your table today!", keywords: "family restaurant, banquet hall, private dining, celebrations, corporate events, wedding venue, food restaurant", metadataBase: new URL("https://foodinn-restaurant.com"), alternates: { - canonical: "https://cafezamzam.com" + canonical: "https://foodinn-restaurant.com" }, openGraph: { - title: "Cafe Zam Zam – Family Restaurant in Malad West", description: "Warm ambiance, authentic flavors & unforgettable dessert drinks. Perfect for family dinners and celebrations.", url: "https://cafezamzam.com", siteName: "Cafe Zam Zam", type: "website", images: [ + title: "Foodinn Family Restaurant & Banquet Hall", description: "Authentic cuisine, warm ambiance, and perfect event spaces for your special moments.", url: "https://foodinn-restaurant.com", siteName: "Foodinn", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/medium-shot-friends-celebrating-together_23-2149734960.jpg", alt: "Cafe Zam Zam warm family dining atmosphere" + url: "https://images.unsplash.com/photo-1552566626-52f8b828add9?w=1200&h=630&fit=crop", alt: "Foodinn Family Restaurant & Banquet Hall" } ] }, twitter: { - card: "summary_large_image", title: "Cafe Zam Zam – Best Family Restaurant in Malad West", description: "Authentic Indian & Chinese cuisine with private booths. Call 097699 63555 to reserve your table.", images: ["http://img.b2bpic.net/free-photo/medium-shot-friends-celebrating-together_23-2149734960.jpg"] + card: "summary_large_image", title: "Foodinn Family Restaurant & Banquet Hall", description: "Authentic cuisine and event spaces for your special moments.", images: ["https://images.unsplash.com/photo-1552566626-52f8b828add9?w=1200&h=630&fit=crop"] }, robots: { index: true, @@ -44,7 +44,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 2d11f53c72c9e49ab93d24442403f9fd931c0052 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:19:15 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 272 +++++++++++++++++++++++++++-------------------- 1 file changed, 159 insertions(+), 113 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3bef4ea..79d1411 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,59 +11,136 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import ContactText from '@/components/sections/contact/ContactText'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Phone, Mail, MapPin } from 'lucide-react'; -export default function CafeZamZam() { +export default function FoodinnRestaurant() { return (
+
+ +
+ +
+ + + +
+
-
- -
- -
- -
- -
+
+
+ +
+ -- 2.49.1 From c093891f9bd6fee5c27654b94360dde3796332b3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:19:16 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 34aea07..0f9f89d 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter), sans-serif; + font-family: var(--font-poppins), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter), sans-serif; + font-family: var(--font-poppins), sans-serif; } -- 2.49.1 From 9d8ed3004d6648628a0e4635f75e70662377e544 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:19:18 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 52897fb..71e1b97 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #250c0d;; - --primary-cta: #b82b40;; + /* --background: #fbfaff;; + --card: #f7f5ff;; + --foreground: #0f0022;; + --primary-cta: #8b5cf6;; --secondary-cta: #ffffff;; - --accent: #b90941;; - --background-accent: #e8a8b6;; */ + --accent: #d8cef5;; + --background-accent: #c4a8f9;; */ - --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #250c0d;; - --primary-cta: #b82b40;; + --background: #fbfaff;; + --card: #f7f5ff;; + --foreground: #0f0022;; + --primary-cta: #8b5cf6;; --primary-cta-text: #f7f6f7;; --secondary-cta: #ffffff;; --secondary-cta-text: #250c0d;; - --accent: #b90941;; - --background-accent: #e8a8b6;; + --accent: #d8cef5;; + --background-accent: #c4a8f9;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1