Files
8ddf2e02-43e8-40a6-bf45-a12…/src/app/about/page.tsx
2026-03-02 21:23:17 +00:00

172 lines
5.9 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Crown, Award, Zap, Star } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Cart", id: "/cart" },
];
const footerColumns = [
{
items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{ label: "Collections", href: "/shop" },
{ label: "Custom Orders", href: "/contact" },
{ label: "Bulk Pricing", href: "/contact" },
{ label: "Care Guide", href: "/" },
],
},
{
items: [
{ label: "WhatsApp Support", href: "/" },
{ label: "Email Us", href: "/" },
{ label: "Location", href: "/" },
{ label: "Returns", href: "/" },
],
},
{
items: [
{ label: "Privacy Policy", href: "/" },
{ label: "Terms & Conditions", href: "/" },
{ label: "Shipping Info", href: "/" },
{ label: "FAQ", href: "/" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="compact"
sizing="largeSmall"
background="fluid"
cardStyle="soft-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Atwab Al Hjaji"
navItems={navItems}
/>
</div>
<div id="about-story" data-section="about-story">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Our Journey: Connecting" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/woman-choosing-colorful-sari-market_53876-48915.jpg", alt: "Moroccan artisan at work" },
{ type: "text", content: "Artisans with the World" },
]}
useInvertedBackground={false}
buttons={[
{ text: "Explore Collection", href: "/shop" },
{ text: "Contact Us", href: "/contact" },
]}
buttonAnimation="slide-up"
/>
</div>
<div id="about-values" data-section="about-values">
<FeatureBorderGlow
title="Our Core Values"
description="Guided by tradition, authenticity, and commitment to excellence."
tag="What Drives Us"
tagIcon={Crown}
tagAnimation="slide-up"
features={[
{
icon: Award,
title: "Authenticity First",
description: "Every fabric is sourced directly from Moroccan artisans, ensuring genuine craftsmanship and traditional techniques.",
},
{
icon: Zap,
title: "Artisan Partnership",
description: "We work directly with master weavers, supporting fair trade practices and sustainable livelihoods.",
},
{
icon: Crown,
title: "Premium Standards",
description: "Our commitment to quality means every piece meets rigorous standards for durability and aesthetic excellence.",
},
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="about-testimonials" data-section="about-testimonials">
<TestimonialCardOne
title="Trusted by Design Professionals"
description="Industry leaders and design experts share their experiences with Atwab Al Hjaji."
tag="Testimonials"
tagIcon={Star}
tagAnimation="slide-up"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Fatima Al-Mansouri",
role: "Interior Designer",
company: "Marrakech Luxury Homes",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=3",
imageAlt: "Fatima Al-Mansouri, Interior Designer",
},
{
id: "2",
name: "Hassan Al-Qadi",
role: "Boutique Owner",
company: "Fez Premium Décor",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg?_wi=2",
imageAlt: "Hassan Al-Qadi, Boutique Owner",
},
{
id: "3",
name: "Leila Bennis",
role: "Hospitality Manager",
company: "Atlas Hotel Group",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg?_wi=4",
imageAlt: "Leila Bennis, Hospitality Manager",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Atwab Al Hjaji"
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}