Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb9c5d2db4 | |||
| f6c340054b | |||
| b28331817a | |||
| 42ba2089c3 | |||
| 69b64e3e5b | |||
| 7f0e11792f | |||
| ab0f305867 | |||
| 5b3b0441bb |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Premium Leather Belts | BeltCo - Handcrafted Quality", description: "Discover premium handcrafted leather belts designed for style and durability. 100% genuine leather with lifetime warranty. Shop our exclusive collection today.", keywords: "leather belts, premium belts, handcrafted belts, men's belts, quality leather, belt shop, designer belts", metadataBase: new URL("https://beltco.com"),
|
title: "BeltCo - Premium Leather Belts", description: "Discover our exclusive collection of handcrafted leather belts designed for the discerning gentleman."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://beltco.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Premium Leather Belts | BeltCo", description: "Discover handcrafted leather belts with timeless style and exceptional durability.", url: "https://beltco.com", siteName: "BeltCo", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/hipster-style-bearded-man_158595-708.jpg", alt: "Premium leather belt collection"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Premium Leather Belts | BeltCo", description: "Handcrafted leather belts designed to last a lifetime.", images: ["http://img.b2bpic.net/free-photo/hipster-style-bearded-man_158595-708.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -194,7 +194,7 @@ export default function LandingPage() {
|
|||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "#products" },
|
{ text: "Shop Now", href: "#products" },
|
||||||
{ text: "Get In Touch", href: "#contact" }
|
{ text: "Get Sizing Help", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -218,4 +218,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user