diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 859f431..43a5b73 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "EZ Smoke Shop | Premium Tobacco & Accessories", description: "Premium smoke shop offering quality tobacco products, cigars, hookah, vape, and accessories. Visit EZ Smoke Shop for expert selection and service.", keywords: "smoke shop, tobacco, cigars, hookah, vape, smoking accessories, local shop", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "EZ Smoke Shop | Premium Selection", description: "Discover premium tobacco products and smoking accessories at EZ Smoke Shop.", type: "website", siteName: "EZ Smoke Shop", images: [ - { - url: "http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8730.jpg", alt: "EZ Smoke Shop Premium Products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "EZ Smoke Shop | Premium Selection", description: "Quality tobacco products and smoking accessories", images: ["http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8730.jpg"], - }, -}; + title: "EZ Smoke Shop - Premium Selection", description: "Discover our premium selection of quality tobacco products, accessories, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}