From 5ae1f3d7eeecfce361c20da6b9b12039203a13b6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:37:50 +0000 Subject: [PATCH 1/3] Add src/app/about/page.tsx --- src/app/about/page.tsx | 112 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..dc873d3 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,112 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 09d61d758852b9418f52083b2b17b238e53868c1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:37:50 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++----------------------------------------- 1 file changed, 5 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8edca60..138ef16 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,16 @@ import type { Metadata } from "next"; -import { Halant } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Chai Pe Charcha - Mumbai's Favorite Chai Café | Authentic Tea & Snacks", description: "Discover Chai Pe Charcha, Mumbai's beloved chai café. Authentic Indian tea, affordable snacks (₹200–₹400), and a vibrant community. 996+ reviews, 3.9 rating. Visit us at Prabhadevi.", keywords: "chai café Mumbai, authentic Indian tea, affordable snacks, Prabhadevi café, chai culture, Indian tea house", metadataBase: new URL("https://chaipecharcha.com"), - alternates: { - canonical: "https://chaipecharcha.com"}, - openGraph: { - title: "Chai Pe Charcha - Where Every Cup Starts a Conversation", description: "Mumbai's favorite chai spot for authentic conversations, snacks, and vibes. Join 996+ regulars today.", url: "https://chaipecharcha.com", siteName: "Chai Pe Charcha", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/spoon-tins-with-spices-near-dish_23-2147894897.jpg", alt: "Steaming chai cups at Chai Pe Charcha"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Chai Pe Charcha - Mumbai's Favorite Chai Café", description: "Authentic tea, affordable snacks, warm conversations. Experience Mumbai's vibrant chai culture.", images: ["http://img.b2bpic.net/free-photo/spoon-tins-with-spices-near-dish_23-2147894897.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Chai Pe Charcha - Mumbai's Favorite Chai Spot", description: "Join us for authentic chai, delicious snacks, and unforgettable conversations in Mumbai."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}