Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-05-28 03:26:27 +00:00
3 changed files with 36 additions and 9 deletions

View File

@@ -41,14 +41,9 @@ export const metadata: Metadata = {
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export default function RootLayout({
@@ -59,7 +54,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -10,6 +10,7 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
@@ -35,6 +36,8 @@ export default function LandingPage() {
name: "Home", id: "#hero"},
{
name: "New Arrivals", id: "#products"},
{
name: "Best-Sellers", id: "#best-sellers"},
{
name: "Collection Deep Dive", id: "#garment-feature"},
{
@@ -141,6 +144,35 @@ export default function LandingPage() {
/>
</div>
<div id="best-sellers" data-section="best-sellers">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
title="Best-Selling Products"
description="Our most beloved pieces, cherished by customers for their exceptional quality and timeless design."
products={[
{
id: "bestseller-1", brand: "Elegance Atelier", name: "The Regal Wrap Dress", price: "£1,500", rating: 5,
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-blonde-lady-red-stylish-hat-sitting-cafe-wonderful-young-woman-with-dark-hair-red-beret-posing_197531-27663.jpg", imageAlt: "Elegant wrap dress"
},
{
id: "bestseller-2", brand: "Elegance Atelier", name: "Signature Silk Scarf", price: "£350", rating: 5,
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fashion-details-stylish-woman-purple-suit-walking-city-street-spring-summer-autumn-season-fashion-trend-holding-purse_285396-6994.jpg", imageAlt: "Luxury silk scarf"
},
{
id: "bestseller-3", brand: "Elegance Atelier", name: "Luxury Leather Handbag", price: "£2,100", rating: 5,
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/girl-posing-on-studio-with-bag_132075-14187.jpg", imageAlt: "Premium leather handbag"
},
{
id: "bestseller-4", brand: "Elegance Atelier", name: "Embroidered Evening Clutch", price: "£780", rating: 4,
reviewCount: "90", imageSrc: "http://img.b2bpic.net/free-photo/charming-lady-red-stylish-beret-smiling-sitting-sofa-wonderful-young-woman-with-dark-hair-beige-coat-posing_197531-27623.jpg", imageAlt: "Exquisite evening clutch"
}
]}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
textboxLayout="default"

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-libre-baskerville), serif;
font-family: var(--font-inter), sans-serif;
}