From a7d13ebe1a34eb84c9f8f2e9a9b67adaeb18357b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 03:36:55 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..f554bc6 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 { DM_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 { DM_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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Sweetag - Melbourne's Cutest Dessert Spot | Egg Waffles & Bingsu", + description: "Discover Sweetag in Glen Waverley - Melbourne's favorite dessert café serving crispy egg waffles, refreshing bingsu, ice cream waffles & specialty drinks. 4.7⭐ rating.", + keywords: "dessert shop Glen Waverley, egg waffles Melbourne, bingsu dessert, ice cream waffles, specialty drinks Melbourne, dessert café, sweet treats", + metadataBase: new URL("https://sweetag.com.au"), + alternates: { + canonical: "https://sweetag.com.au", + }, + openGraph: { + title: "Sweetag - Melbourne's Cutest Dessert Spot", + description: "Craving authentic Hong Kong desserts? Visit Sweetag for crispy egg waffles, refreshing bingsu & Instagram-worthy treats. Open daily 10am - 10pm.", + url: "https://sweetag.com.au", + siteName: "Sweetag", + type: "website", + images: [ + { + url: "https://sweetag.com.au/og-hero.jpg", + alt: "Sweetag Dessert Café", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sweetag - Melbourne's Cutest Dessert Spot", + description: "Crispy egg waffles, refreshing bingsu & specialty drinks at our pink aesthetic dessert café in Glen Waverley. 4.7⭐ on Google.", + images: ["https://sweetag.com.au/twitter-hero.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}