Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7247aafb69 | |||
| 9afeeb135d | |||
| e85949b15c | |||
| bcd3541090 | |||
| 02cc542e38 | |||
| c7591cc704 |
@@ -1,51 +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: "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"),
|
title: "StyleHub - Premium Fashion & Lifestyle", description: "Discover premium fashion and lifestyle products curated for your unique style."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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: `
|
||||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
|
|||||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Award, Sparkles } from "lucide-react";
|
import { Award, Sparkles, TrendingUp } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -73,7 +73,9 @@ export default function LandingPage() {
|
|||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
title="Featured Collection"
|
title="Featured Collection"
|
||||||
description="Handpicked products from top brands with exceptional ratings and reviews"
|
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"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -386,4 +388,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user