Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7247aafb69 | |||
| 9afeeb135d | |||
| e85949b15c | |||
| bcd3541090 | |||
| 02cc542e38 | |||
| c7591cc704 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user