diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a8885f..887dedd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sarah & Michael's Wedding Celebration", description: "Join us for the wedding of Sarah and Michael. Explore our love story, venue details, countdown timer, photo gallery, and RSVP.", keywords: "wedding, celebration, bride, groom, venue, RSVP, countdown, engagement", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Sarah & Michael - Getting Married!", description: "Two hearts, one perfect day. Join our wedding celebration on October 18, 2025.", type: "website", siteName: "Sarah & Michael's Wedding", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-man-carries-his-girlfriend-his-back-park_1153-9348.jpg", alt: "Sarah and Michael's engagement photo"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sarah & Michael's Wedding", description: "Celebrating love and commitment. Join us!", images: ["http://img.b2bpic.net/free-photo/young-man-carries-his-girlfriend-his-back-park_1153-9348.jpg"], - }, -}; + title: "Sarah & Michael's Wedding", description: "Join us for our wedding celebration"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}