Files
7b5e93e3-2258-47ab-b906-b74…/src/app/about/page.tsx
2026-01-28 16:08:05 +02:00

104 lines
3.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Palette, Hammer, Leaf, Heart } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="largeSmall"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="MugCraft"
navItems={[
{ name: "Shop", id: "/" },
{ name: "About", id: "/about" },
{ name: "Features", id: "/" },
{ name: "Contact", id: "/contact" }
]}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Crafted for You"
description="At MugCraft, we believe every morning coffee deserves to be special. Our mugs combine artistic design with everyday functionality, creating vessels that bring joy to your daily routine."
imagePosition="right"
textboxLayout="default"
useInvertedBackground="noInvert"
imageSrc="https://img.b2bpic.net/free-photo/young-couple-pottery-class-together_1303-24911.jpg"
imageAlt="Artisan mug workshop"
bulletPoints={[
{
title: "Premium Materials",
description: "Hand-selected ceramic and high-quality glazes ensure durability and beautiful finishes.",
icon: Palette
},
{
title: "Artisan Crafted",
description: "Each mug is carefully designed and produced by skilled craftspeople with years of experience.",
icon: Hammer
},
{
title: "Eco-Friendly",
description: "We use sustainable practices and environmentally conscious production methods.",
icon: Leaf
},
{
title: "Customer First",
description: "Your satisfaction is our priority, backed by our 30-day quality guarantee.",
icon: Heart
}
]}
/>
</div>
<FooterBase
logoText="MugCraft"
copyrightText="© 2025 MugCraft. All rights reserved."
columns={[
{
title: "Shop",
items: [
{ label: "All Products", href: "/" },
{ label: "New Arrivals", href: "/" },
{ label: "Best Sellers", href: "/" },
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Sustainability", href: "/about" },
{ label: "Careers", href: "#" }
]
},
{
title: "Support",
items: [
{ label: "FAQ", href: "/" },
{ label: "Contact Us", href: "/contact" },
{ label: "Shipping Info", href: "#" },
{ label: "Returns", href: "#" }
]
}
]}
/>
</ThemeProvider>
);
}