diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ffadb81..2836fc9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Trendy Binz - Liquidation Store Oshawa | 40-70% Off", description: "Oshawa's best overstock and liquidation store. Find home goods, furniture, and everyday essentials at 40-70% off retail. New inventory weekly!", keywords: "liquidation store Oshawa, overstock deals Oshawa, discount store Durham Region, bargain hunting Oshawa, closeout deals Ontario, Trendy Binz", metadataBase: new URL("https://trendybinz.com"), - alternates: { - canonical: "https://trendybinz.com" - }, - openGraph: { - title: "Trendy Binz - Liquidation Store Oshawa", description: "Your go-to for overstock treasures and unbeatable deals at 40-70% off retail.", url: "https://trendybinz.com", siteName: "Trendy Binz", images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-woman-with-mask-shopping_23-2148630846.jpg", alt: "Trendy Binz Oshawa Liquidation Store" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "Trendy Binz - Oshawa Liquidation Store", description: "40-70% off retail on home goods, furniture & more. New inventory weekly!", images: [ - "http://img.b2bpic.net/free-photo/portrait-woman-with-mask-shopping_23-2148630846.jpg" - ] - }, - robots: { - index: true, - follow: true - } -}; + title: "Trendy Binz - Liquidation Store in Oshawa", description: "Trendy Binz is Oshawa's premier liquidation store offering overstock treasures, home essentials, and everyday deals at 40-70% off retail. Visit us today!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}