Update src/app/about/page.tsx

This commit is contained in:
2026-06-07 12:14:16 +00:00
parent 6ae17e8646
commit d4e798ef7d

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import TeamCardTen from "@/components/sections/team/TeamCardTen";
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Coffee, Award, Users } from "lucide-react";
export default function AboutPage() {
const navItems = [
@@ -40,24 +40,19 @@ export default function AboutPage() {
<NavbarStyleApple brandName="Mian Coffee House" navItems={navItems} />
</div>
<div id="about-us-detailed" data-section="about-us-detailed">
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Our Story: Crafting Moments, One Cup at a Time" }]}
useInvertedBackground={true}
/>
</div>
<div id="team" data-section="team">
<TeamCardTen
title="Meet Our Dedicated Team"
tag="Passionate Baristas"
membersAnimation="slide-up"
members={[
{ id: "member-1", name: "Ahmad Al-Mian", imageSrc: "http://img.b2bpic.net/free-photo/cafe-restaurants-coffee-shop-owners-retail-concept-enthusiastic-happy-handsome-barista-waite_1258-60012.jpg", imageAlt: "Ahmad Al-Mian, Founder" },
{ id: "member-2", name: "Fatima Hassan", imageSrc: "http://img.b2bpic.net/free-photo/waitress-ringing-hospitality-bell_482257-85316.jpg", imageAlt: "Fatima Hassan, Head Barista" },
{ id: "member-3", name: "Khalid Mansour", imageSrc: "http://img.b2bpic.net/free-photo/woman-drinking-coffee-tea-while-working-laptop_1098-13299.jpg", imageAlt: "Khalid Mansour, Operations Manager" }
<div id="about-story" data-section="about-story" className="min-h-screen">
<SplitAbout
title="Our Passion for Perfect Coffee"
description="Founded on a deep love for coffee and community, Mian Coffee House started with a simple vision: to create a space where everyone feels welcome, and every cup tells a story. We believe that great coffee is more than just a drink; it's an experience, a moment of joy, and a connection. Our journey began with a commitment to sourcing the finest beans, mastering the art of brewing, and crafting an ambiance that invites you to linger. We've grown, but our core values remain the same: quality, comfort, and connection."
bulletPoints={[
{ title: "Crafted with Care", description: "Every coffee is prepared by skilled baristas with meticulous attention to detail.", icon: Coffee },
{ title: "Finest Ingredients", description: "We select only premium, ethically sourced beans and fresh, local ingredients.", icon: Award },
{ title: "Community Hub", description: "More than a cafe, we're a gathering place for friends, family, and colleagues.", icon: Users },
]}
memberVariant="card"
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-making-coffee-machine_23-2148767938.jpg"
imageAlt="Barista preparing coffee"
imagePosition="right"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>