From d61016568b30fedf2d0732c0e11c001597bb1353 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 18:09:30 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..53899fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,51 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Sonam, Will You Be Mine? - A Special Proposal", + description: "A heartfelt proposal website dedicated to Sonam. A journey of love, feelings, and the most important question. Made with love and hope.", + keywords: "proposal, love, sonam, forever, girlfriend, marry me", + openGraph: { + title: "Sonam, Will You Be Mine?", + description: "I have something important to tell you. Come take a journey through my heart.", + siteName: "For Sonam ❤️", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/heart-confetti-transparent-background_23-2148035909.jpg", + alt: "A romantic proposal moment", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sonam, Will You Be Mine?", + description: "A special proposal just for you", + images: ["http://img.b2bpic.net/free-vector/heart-confetti-transparent-background_23-2148035909.jpg"], + }, +}; export default function RootLayout({ children, @@ -31,7 +55,9 @@ export default function RootLayout({ return ( - + {children}