From dc143afd0394de509acba04aa00d0f4d168fbdc2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 03:50:52 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..17adbec 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,52 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import { Inter } 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 { Public_Sans } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Café Nuwara - Fine Dining in Kandy, Sri Lanka", + description: "Experience elegant fine dining at Café Nuwara in Kandy. Enjoy exquisite cuisine, craft cocktails, vegan options, and live music every Friday & Saturday.", + keywords: "restaurant Kandy, fine dining Sri Lanka, cafe Nuwara, outdoor seating, cocktails, live music", + metadataBase: new URL("https://cafenuwara.com"), + alternates: { + canonical: "https://cafenuwara.com", + }, + openGraph: { + title: "Café Nuwara - Fine Dining in Kandy, Sri Lanka", + description: "Experience elegant fine dining at Café Nuwara in Kandy. Enjoy exquisite cuisine, craft cocktails, vegan options, and live music.", + url: "https://cafenuwara.com", + siteName: "Café Nuwara", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/romantic-table-setting-wedding-reception-with-sea-view-through-windows_637285-997.jpg", + alt: "Café Nuwara Restaurant", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Café Nuwara - Fine Dining in Kandy", + description: "Elegant restaurant with outdoor seating, craft cocktails, and live music every Friday & Saturday.", + images: [ + "http://img.b2bpic.net/free-photo/romantic-table-setting-wedding-reception-with-sea-view-through-windows_637285-997.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +55,9 @@ export default function RootLayout({ return ( - + {children}