diff --git a/src/app/app/page.tsx b/src/app/app/page.tsx index 78129fc..65d9ed9 100644 --- a/src/app/app/page.tsx +++ b/src/app/app/page.tsx @@ -82,7 +82,7 @@ export default function AppPage() { background={{ variant: "glowing-orb" }} leftCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-arrangement-with-opened-envelope_23-2148243901.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/minimalist-wedding-arrangement-with-opened-envelope_23-2148243901.jpg?_wi=2", imageAlt: "Create Your Capsule", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..2fbf22f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}