diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9298c7b..99d66b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1411 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Fragrances | Luxury Scents at Affordable Prices", description: "Discover long-lasting perfumes for work, dates, events & everyday use. Luxury fragrances at affordable prices with fast delivery. Shop now!", keywords: "premium perfumes, luxury fragrances, affordable scents, mens cologne, womens perfume, unisex fragrance, gift sets", openGraph: { - title: "Premium Fragrances | Luxury Scents at Affordable Prices", description: "Discover long-lasting perfumes that make you stand out. Luxury scents at affordable prices with fast delivery.", siteName: "Aromavita", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Premium Fragrances | Aromavita", description: "Luxury scents at affordable prices with fast delivery" - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -