diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5e19073..3ce095b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -106,28 +106,28 @@ export default function AboutPage() { id: "tea-brewing", title: "Tea Brewing", tags: ["Artisanal", "Process", "Craft"], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-making-tea-pot_23-2148786608.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-making-tea-pot_23-2148786608.jpg?_wi=2", imageAlt: "Professional tea brewing process", }, { id: "café-vibe", title: "Café Ambience", tags: ["Cozy", "Warm", "Welcoming"], - imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648684.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648684.jpg?_wi=3", imageAlt: "Interior café atmosphere", }, { id: "snacks", title: "Snacks & Bites", tags: ["Delicious", "Fresh", "Quality"], - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs-chopsticks_23-2148694346.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs-chopsticks_23-2148694346.jpg?_wi=8", imageAlt: "Fresh snacks presentation", }, { id: "moments", title: "Customer Moments", tags: ["Joy", "Connection", "Experience"], - imageSrc: "http://img.b2bpic.net/free-photo/young-professionals-brainstorming-coffee-stylish-workspace_24972-2909.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-professionals-brainstorming-coffee-stylish-workspace_24972-2909.jpg?_wi=3", imageAlt: "Happy customers enjoying moments", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..db13c77 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Rong Chaa - Premium Tea Café in Krishnanagar", + description: "Experience luxury tea blends, delicious momos, and authentic café vibes at Rong Chaa. Affordable premium quality. Visit us in Krishnanagar.", + keywords: "tea café, premium tea, momos, sandwiches, Krishnanagar, café experience", + metadataBase: new URL("https://rongchaa.com"), + alternates: { + canonical: "https://rongchaa.com", + }, + openGraph: { + title: "Rong Chaa - Where Tea Meets Experience", + description: "Discover innovative tea creations, delicious snacks, and amazing café vibes.", + url: "https://rongchaa.com", + siteName: "Rong Chaa", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/coffee-cup-table_23-2148164788.jpg", + alt: "Rong Chaa premium tea experience", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Rong Chaa - Premium Tea Café", + description: "Experience luxury tea, innovative blends, and authentic café moments.", + images: ["http://img.b2bpic.net/free-photo/coffee-cup-table_23-2148164788.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}