6 Commits

Author SHA1 Message Date
7247aafb69 Update src/app/page.tsx 2026-03-06 20:54:30 +00:00
9afeeb135d Update src/app/layout.tsx 2026-03-06 20:54:29 +00:00
e85949b15c Merge version_1 into main
Merge version_1 into main
2026-03-06 20:37:56 +00:00
bcd3541090 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:36:22 +00:00
02cc542e38 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:34:50 +00:00
c7591cc704 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:33:13 +00:00
2 changed files with 11 additions and 41 deletions

View File

@@ -1,51 +1,20 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "StyleHub - Shop Fashion & Lifestyle Goods Online", description: "Discover premium clothing, accessories, and lifestyle products at StyleHub. Free shipping on orders over $50. 30-day returns. Shop now!", keywords: "clothing, fashion, accessories, lifestyle, online shopping, apparel, buy online", metadataBase: new URL("https://stylehub.com"),
alternates: {
canonical: "https://stylehub.com"},
openGraph: {
title: "StyleHub - Your Ultimate Shopping Destination", description: "Shop trending fashion and lifestyle products with free shipping and easy returns.", url: "https://stylehub.com", siteName: "StyleHub", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/studio-with-props-fashion-shoting_23-2148885691.jpg", alt: "StyleHub Fashion Collection"},
],
},
twitter: {
card: "summary_large_image", title: "StyleHub - Shop Fashion & Lifestyle", description: "Discover curated products with free shipping and 30-day returns.", images: ["http://img.b2bpic.net/free-photo/studio-with-props-fashion-shoting_23-2148885691.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "StyleHub - Premium Fashion & Lifestyle", description: "Discover premium fashion and lifestyle products curated for your unique style."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -12,7 +12,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Award, Sparkles } from "lucide-react";
import { Award, Sparkles, TrendingUp } from "lucide-react";
export default function LandingPage() {
return (
@@ -73,7 +73,9 @@ export default function LandingPage() {
<ProductCardTwo
title="Featured Collection"
description="Handpicked products from top brands with exceptional ratings and reviews"
tag="Best Sellers"
tag="Customer Favorites"
tagIcon={TrendingUp}
tagAnimation="slide-up"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
@@ -386,4 +388,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}