Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 13:36:25 +00:00
2 changed files with 16 additions and 52 deletions

View File

@@ -1,58 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
import type { Metadata } from 'next';
import { GeistSans } from 'geist/font/sans';
import { GeistMono } from 'geist/font/mono';
import './globals.css';
export const metadata: Metadata = {
title: "StyleHub - Premium Clothing & Fashion", description: "Discover curated collections of premium clothing for every style. Shop sustainable fashion with expert styling advice and easy returns.", keywords: "clothing, fashion, apparel, online shopping, premium quality, sustainable fashion, style", metadataBase: new URL("https://stylehub.example.com"),
alternates: {
canonical: "https://stylehub.example.com"},
openGraph: {
title: "StyleHub - Your Personal Fashion Destination", description: "Discover curated collections of premium clothing designed for every occasion. Express your unique style.", url: "https://stylehub.example.com", siteName: "StyleHub", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-walking-white-blouse-terracotta-pants-minimalist-setting_24972-2967.jpg", alt: "StyleHub - Premium Clothing Collection"},
],
},
twitter: {
card: "summary_large_image", title: "StyleHub - Premium Clothing", description: "Discover curated fashion collections for every style", images: [
"http://img.b2bpic.net/free-photo/woman-walking-white-blouse-terracotta-pants-minimalist-setting_24972-2967.jpg"],
},
robots: {
index: true,
follow: true,
},
title: 'StyleHub - Premium Fashion Collection',
description: 'Discover premium quality clothing designed for every occasion. From timeless classics to trendy essentials, find your signature look.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${GeistSans.variable} ${GeistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -132,16 +132,16 @@ export default function LandingPage() {
features={[
{
id: 1,
title: "Curated Collections", description: "Handpicked items from emerging and established designers, ensuring quality and uniqueness in every piece.", imageSrc: "http://img.b2bpic.net/free-photo/young-adults-funky-clothing-enjoying-outdoors-generated-by-ai_188544-37450.jpg", imageAlt: "Curated fashion collection"},
title: "Curated Collections", description: "95% of our customers find their perfect item within three visits. Handpicked items from emerging and established designers, ensuring quality and uniqueness in every piece.", imageSrc: "http://img.b2bpic.net/free-photo/young-adults-funky-clothing-enjoying-outdoors-generated-by-ai_188544-37450.jpg", imageAlt: "Curated fashion collection"},
{
id: 2,
title: "Sustainable Fashion", description: "We prioritize eco-friendly materials and ethical production practices for a better future.", imageSrc: "http://img.b2bpic.net/free-photo/woman-walking-white-blouse-terracotta-pants-minimalist-setting_24972-2967.jpg?_wi=2", imageAlt: "Sustainable clothing options"},
title: "Sustainable Fashion", description: "100% ethically sourced materials with carbon-neutral shipping. We prioritize eco-friendly materials and ethical production practices for a better future.", imageSrc: "http://img.b2bpic.net/free-photo/woman-walking-white-blouse-terracotta-pants-minimalist-setting_24972-2967.jpg?_wi=2", imageAlt: "Sustainable clothing options"},
{
id: 3,
title: "Personal Styling", description: "Access to expert styling advice and personalized recommendations based on your preferences.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-accessoires-travel-with-women-clothing-concept-white_1921-107.jpg", imageAlt: "Professional styling service"},
title: "Personal Styling", description: "Rated 4.9/5 by over 10,000 users. Access to expert styling advice and personalized recommendations based on your preferences.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-accessoires-travel-with-women-clothing-concept-white_1921-107.jpg", imageAlt: "Professional styling service"},
{
id: 4,
title: "Easy Returns", description: "Hassle-free 30-day returns policy so you can shop with complete confidence and peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-dress-hat-standing-by-architecture_1303-9713.jpg?_wi=3", imageAlt: "Easy return process"},
title: "Easy Returns", description: "99.2% satisfaction rate on return experiences. Hassle-free 30-day returns policy so you can shop with complete confidence and peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-dress-hat-standing-by-architecture_1303-9713.jpg?_wi=3", imageAlt: "Easy return process"},
]}
ariaLabel="Why Choose StyleHub section"
/>