diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..30e84e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,61 @@ import type { Metadata } from "next"; +import { Libre_Baskerville, Inter } from "next/font/google"; 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); -const inter = Inter({ + +const interFont = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "Lento — French-Chic Cafe & Specialty Coffee | Kowloon City", + description: "Lento in Kowloon City: specialty coffee, all-day breakfast, and inventive Sino-Western lunch in a cozy French-inspired setting. Open daily from 7:30 AM. Reserve your table.", + keywords: "Kowloon City cafe, specialty coffee, brunch Kowloon, French cafe Hong Kong, Sung Wong Toi, artisanal coffee", + metadataBase: new URL("https://lento.hk"), + alternates: { + canonical: "https://lento.hk", + }, + openGraph: { + title: "Lento — A Gentle Pause in Kowloon City", + description: "French-chic cafe with specialty coffee and inventive Sino-Western brunch. Cozy, artfully plated, genuinely welcoming.", + url: "https://lento.hk", + siteName: "Lento", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n2lbz1", + alt: "Lento cafe interior with sunlight and guests", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Lento — French-Chic Cafe & Specialty Coffee", + description: "A gentle pause in Kowloon City. Thoughtful coffee, generous brunch, and warm hospitality.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n2lbz1"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +64,9 @@ export default function RootLayout({ return ( - + {children}