Update src/app/layout.tsx

This commit is contained in:
2026-03-19 02:29:33 +00:00
parent aca252f3eb
commit ac3ac1f8e4

View File

@@ -1,24 +1,61 @@
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"],
});
export const metadata: Metadata = {
title: "Time Capsule SMS - Seal Messages for the Future",
description: "Create beautiful time capsules with messages, images, stickers, and links. Seal them for future dates, share via code, and unlock emotional moments when the time is right.",
keywords: "time capsule, message scheduling, future emails, shared messages, memory vault, scheduled notifications",
metadataBase: new URL("https://timecapsulesms.com"),
alternates: {
canonical: "https://timecapsulesms.com",
},
openGraph: {
title: "Time Capsule SMS - Seal Messages for the Future",
description: "Create beautiful time capsules with messages, images, stickers, and links. Seal them for future dates, share via code, and unlock emotional moments when the time is right.",
url: "https://timecapsulesms.com",
siteName: "Time Capsule SMS",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/minimalist-wedding-arrangement-with-opened-envelope_23-2148243901.jpg",
alt: "Time Capsule SMS",
},
],
},
twitter: {
card: "summary_large_image",
title: "Time Capsule SMS - Seal Messages for the Future",
description: "Create beautiful time capsules with messages, images, stickers, and links. Seal them for future dates and unlock emotional moments.",
images: ["http://img.b2bpic.net/free-photo/minimalist-wedding-arrangement-with-opened-envelope_23-2148243901.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}