229 lines
10 KiB
TypeScript
229 lines
10 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
|
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
|
import { Award, CheckCircle, Sparkles, Zap, Shield, Truck, Heart } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="soft"
|
|
contentWidth="compact"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="noiseDiagonalGradient"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
navItems={[
|
|
{
|
|
name: "Home", id: "hero"},
|
|
{
|
|
name: "About", id: "about"},
|
|
{
|
|
name: "Products", id: "products"},
|
|
{
|
|
name: "Contact", id: "contact"},
|
|
]}
|
|
brandName="Classic Home"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroCarouselLogo
|
|
logoText="Classic Home"
|
|
description="Timeless elegance in the heart of Riyadh. Curating spaces that reflect your unique lifestyle."
|
|
buttons={[
|
|
{
|
|
text: "Shop Now", href: "#products"},
|
|
{
|
|
text: "Contact Us", href: "#contact"},
|
|
]}
|
|
slides={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/elegant-modern-living-room-showcases-luxury-design-generated-by-ai_188544-27377.jpg", imageAlt: "Luxurious Living Room"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/lamp-luxury-light-white-vintage_1203-4986.jpg", imageAlt: "Classic Dining Room"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/sofa-chair_74190-3822.jpg", imageAlt: "Luxurious Living Room"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-home-decor-details-close-up-foreground-against-blurred-room-space_169016-9786.jpg", imageAlt: "Classic Dining Room"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/beauty-slim-african-american-model-wear-black-blouse-green-long-legs-pants-posed-chinese-cafe_627829-5911.jpg", imageAlt: "Luxurious Living Room"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/coffee-buns_23-2147693975.jpg", imageAlt: "Classic Dining Room"},
|
|
]}
|
|
className="w-full"
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<AboutMetric
|
|
useInvertedBackground={true}
|
|
title="Crafting Luxury Spaces"
|
|
metrics={[
|
|
{
|
|
icon: Award,
|
|
label: "Years in Business", value: "20+"},
|
|
{
|
|
icon: CheckCircle,
|
|
label: "Projects Completed", value: "1500+"},
|
|
{
|
|
icon: Sparkles,
|
|
label: "Happy Clients", value: "1200+"},
|
|
]}
|
|
metricsAnimation="slide-up"
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTwentySix
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
title: "Bespoke Design", description: "Custom pieces tailored to your home's unique dimensions.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-interior-designer_23-2150346490.jpg", buttonIcon: Zap,
|
|
},
|
|
{
|
|
title: "Premium Quality", description: "Sourced from the finest global materials.", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-outdoor-living-space-with-comfortable-sofa_23-2152008212.jpg", buttonIcon: Shield,
|
|
},
|
|
{
|
|
title: "Riyadh Delivery", description: "Prompt and professional delivery service.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-employee-working-desk_23-2149721913.jpg", buttonIcon: Truck,
|
|
},
|
|
{
|
|
title: "After-Sales Care", description: "Ensuring your pieces remain perfect.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-chic-indian-living-room_23-2149400859.jpg", buttonIcon: Heart,
|
|
},
|
|
]}
|
|
title="Why Classic Home?"
|
|
description="We blend heritage craftsmanship with contemporary Riyadh living."
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="products" data-section="products">
|
|
<ProductCardThree
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="uniform-all-items-equal"
|
|
useInvertedBackground={true}
|
|
products={[
|
|
{
|
|
id: "1", name: "Royal Velvet Sofa", price: "SAR 12,000", imageSrc: "http://img.b2bpic.net/free-photo/antique-chair-interior-furniture-sofa_1203-5024.jpg"},
|
|
{
|
|
id: "2", name: "Classic Dining Table", price: "SAR 8,500", imageSrc: "http://img.b2bpic.net/free-photo/antique-book-stylish-room_23-2147767241.jpg"},
|
|
{
|
|
id: "3", name: "Luxury Bed Frame", price: "SAR 9,800", imageSrc: "http://img.b2bpic.net/free-photo/bedroom-with-chandelier-bed-with-blanket-it_188544-33431.jpg"},
|
|
{
|
|
id: "4", name: "Crystal Chandelier", price: "SAR 4,200", imageSrc: "http://img.b2bpic.net/free-photo/wire-black-design-ceiling-luster-hanging-bedroom-loft-interior-details_8353-8242.jpg"},
|
|
{
|
|
id: "5", name: "Silk Area Rug", price: "SAR 3,500", imageSrc: "http://img.b2bpic.net/free-photo/pillows-bed-luxury-bedroom_268835-3706.jpg"},
|
|
{
|
|
id: "6", name: "Marble Accent Table", price: "SAR 2,100", imageSrc: "http://img.b2bpic.net/free-photo/ornate-table-art-nouveau-style_23-2150975605.jpg"},
|
|
]}
|
|
title="Curated Collections"
|
|
description="Discover our handpicked luxury selection."
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardTwo
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="uniform-all-items-equal"
|
|
useInvertedBackground={false}
|
|
metrics={[
|
|
{
|
|
id: "m1", value: "15", description: "Showrooms in KSA"},
|
|
{
|
|
id: "m2", value: "400+", description: "Expert Designers"},
|
|
{
|
|
id: "m3", value: "100%", description: "Customer Satisfaction"},
|
|
]}
|
|
title="Our Impact"
|
|
description="Numbers speak to our commitment."
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTen
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
testimonials={[
|
|
{
|
|
id: "1", title: "Excellent Quality", quote: "The sofa I bought is absolutely stunning.", name: "Ahmed Al-Farsi", role: "Architect", imageSrc: "http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018814.jpg"},
|
|
{
|
|
id: "2", title: "Top Service", quote: "Great selection and professional delivery.", name: "Sarah Mansour", role: "Designer", imageSrc: "http://img.b2bpic.net/free-photo/latin-amateurs-dancing-salsa_23-2151245245.jpg"},
|
|
{
|
|
id: "3", title: "Pure Luxury", quote: "Best furniture shop in Riyadh, period.", name: "Khalid Bin Salem", role: "Entrepreneur", imageSrc: "http://img.b2bpic.net/free-photo/older-guests-using-videocall-connection_482257-81635.jpg"},
|
|
{
|
|
id: "4", title: "Exquisite Design", quote: "Love the classic touches in every item.", name: "Nora Khalid", role: "Artist", imageSrc: "http://img.b2bpic.net/free-photo/couple-choosing-fabric-furniture-store_1157-37490.jpg"},
|
|
{
|
|
id: "5", title: "Professional Team", quote: "Superb advice and high quality products.", name: "Omar Fahad", role: "Executive", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-african-american-woman-smiling-cheerful-friendly-face-laughing-confident_839833-29956.jpg"},
|
|
]}
|
|
title="Client Stories"
|
|
description="Hear from our valued Riyadh community."
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "radial-gradient"}}
|
|
tag="Get in Touch"
|
|
title="Visit Classic Home"
|
|
description="Experience premium furniture in our Riyadh showroom."
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Company", items: [
|
|
{
|
|
label: "About Us", href: "#about"},
|
|
{
|
|
label: "Showrooms", href: "#"},
|
|
],
|
|
},
|
|
{
|
|
title: "Support", items: [
|
|
{
|
|
label: "Shipping", href: "#"},
|
|
{
|
|
label: "FAQ", href: "#"},
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2024 Classic Home Riyadh."
|
|
bottomRightText="Multilingual Support: English | العربية"
|
|
containerClassName="w-full px-4 md:px-8"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|