diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 81dca89..f6f6b9b 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 { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "OurVibeStore - Daily Use Products & Essentials", description: "Shop quality daily use products, home essentials, and lifestyle items. Free shipping on orders over $50. 30-day returns. Trusted by millions.", keywords: "daily use products, home essentials, lifestyle items, shopping, quality products", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "OurVibeStore - Your Daily Essentials Destination", description: "Discover curated daily use products for home, personal care, and lifestyle. Fast shipping, quality guaranteed.", url: "https://ourvibe.store", siteName: "OurVibeStore", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg", alt: "OurVibeStore Featured Products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "OurVibeStore - Daily Essentials", description: "Shop quality products for everyday living", images: ["http://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg"], - }, -}; + title: "OurVibeStore - Daily Essentials", description: "Shop quality products designed for everyday living. From home essentials to personal care, find everything you need all in one place."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}