Update src/app/layout.tsx

This commit is contained in:
2026-03-19 18:09:30 +00:00
parent cf5073716d
commit d61016568b

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +69,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}