Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d972461d0 | |||
| ec2b330791 | |||
| 04efbd8b5b |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Nunito } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const nunito = Nunito({
|
|
||||||
variable: "--font-nunito", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Woline LLC - Premium Quality Shoes & Footwear", description: "Discover Woline LLC's exclusive collection of premium shoes. High-quality, comfortable, and sustainable footwear for every lifestyle and occasion.", keywords: "shoes, footwear, premium shoes, comfortable shoes, sustainable shoes, athletic shoes, casual shoes, dress shoes", openGraph: {
|
title: "Woline LLC - Premium Footwear", description: "Discover Woline LLC's exclusive collection of high-quality shoes designed with comfort, style, and sustainability in mind."};
|
||||||
title: "Woline LLC - Premium Quality Shoes & Footwear", description: "Discover Woline LLC's exclusive collection of premium shoes. Comfort, style, and sustainability in every pair.", siteName: "Woline LLC", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/close-up-feet-smartphone-ground_23-2148876519.jpg", alt: "Woline LLC Premium Shoes Collection"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Woline LLC - Premium Quality Shoes", description: "Discover our exclusive collection of premium footwear designed for comfort and style.", images: ["http://img.b2bpic.net/free-photo/close-up-feet-smartphone-ground_23-2148876519.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={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -190,7 +190,7 @@ export default function LandingPage() {
|
|||||||
description="Join thousands of satisfied customers enjoying Woline LLC shoes. Get exclusive access to new collections, special offers, and sustainable footwear innovations."
|
description="Join thousands of satisfied customers enjoying Woline LLC shoes. Get exclusive access to new collections, special offers, and sustainable footwear innovations."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "products" },
|
{ text: "Shop Now", href: "products" },
|
||||||
{ text: "Contact Support", href: "#" }
|
{ text: "View Returns & FAQ", href: "#" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user