4 Commits

Author SHA1 Message Date
904f7231a0 Merge version_2 into main
Merge version_2 into main
2026-03-07 18:06:10 +00:00
2d972461d0 Update src/app/page.tsx 2026-03-07 18:06:06 +00:00
ec2b330791 Update src/app/layout.tsx 2026-03-07 18:06:06 +00:00
04efbd8b5b Merge version_1 into main
Merge version_1 into main
2026-03-07 18:03:55 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
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 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,
},
};
title: "Woline LLC - Premium Footwear", description: "Discover Woline LLC's exclusive collection of high-quality shoes designed with comfort, style, and sustainability in mind."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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."
buttons={[
{ text: "Shop Now", href: "products" },
{ text: "Contact Support", href: "#" }
{ text: "View Returns & FAQ", href: "#" }
]}
buttonAnimation="blur-reveal"
background={{ variant: "sparkles-gradient" }}
@@ -234,4 +234,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}