Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2cdf1af4c1 | |||
| ae7e53d6de | |||
| a288c17beb | |||
| 29eb7869e3 |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1424,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -77,7 +77,7 @@ export default function LandingPage() {
|
||||
title: "Local & Friendly", description: "Oshawa's trusted liquidation destination. Owner-operated with personalized service and genuine care for our community.", icon: Heart
|
||||
},
|
||||
{
|
||||
title: "Ever-Changing Selection", description: "Home goods, decor, essentials, and surprises. Every visit is a new treasure hunt—you never know what amazing finds await!"
|
||||
title: "Ever-Changing Selection", description: "Home goods, decor, essentials, and surprises. Every visit is a new treasure hunt—you never know what amazing finds await!", icon: CheckCircle
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elegant-women-with-shopping-bags-city_1157-26762.jpg"
|
||||
@@ -103,7 +103,7 @@ export default function LandingPage() {
|
||||
title: "Community Trusted", description: "Owner-operated business committed to serving Oshawa with integrity and excellent customer service.", icon: Users
|
||||
},
|
||||
{
|
||||
title: "Expert Curation", description: "Every product is carefully selected to ensure value, quality, and variety for every budget."
|
||||
title: "Expert Curation", description: "Every product is carefully selected to ensure value, quality, and variety for every budget.", icon: CheckCircle
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/sale-labels-with-flat-design_23-2147819411.jpg"
|
||||
|
||||
Reference in New Issue
Block a user