diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 01fc736..6e746d0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mableton Tobacco & Vape | Premium Products", description: "Discover premium vaping devices, e-liquids, and tobacco products at Mableton Tobacco & Vape. Quality selection with expert customer service.", keywords: "vape shop, tobacco store, vaping devices, e-liquids, premium vape, Mableton", openGraph: { - title: "Mableton Tobacco & Vape", description: "Premium vaping and tobacco products with expert service", siteName: "Mableton Tobacco & Vape", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148370476.jpg", alt: "Mableton Tobacco & Vape Store" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Mableton Tobacco & Vape", description: "Premium vaping devices and tobacco products", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148370476.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Mableton Tobacco & Vape", description: "Premium Vape & Tobacco Selection - Your trusted partner for quality products"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}