diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c71ea43..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -export const metadata: Metadata = { - title: "Our Wedding - A Celebration of Love", description: "Join us as we celebrate our love and commitment. Discover details about our wedding ceremony, reception, and RSVP information.", keywords: "wedding, celebration, love, engagement, ceremony, reception, RSVP", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Our Wedding - A Celebration of Love", description: "Join us as we celebrate our love and commitment.", type: "website", siteName: "Our Wedding", images: [ - { - url: "http://img.b2bpic.net/free-photo/groom-bride-their-wedding-day-forest_1303-29404.jpg", alt: "Our Wedding"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Our Wedding - A Celebration of Love", description: "Join us as we celebrate our love and commitment.", images: ["http://img.b2bpic.net/free-photo/groom-bride-their-wedding-day-forest_1303-29404.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -