Files
0c4a632b-c391-4bfb-914a-da3…/src/app/about/page.tsx
2026-03-12 18:21:42 +00:00

149 lines
7.2 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 MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "hero" },
{ name: "Services", id: "services" },
{ name: "Gallery", id: "gallery" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Services", items: [
{ label: "Wedding Decoration", href: "/services" },
{ label: "Mehndi & Engagement", href: "/services" },
{ label: "Hall Decoration", href: "/services" },
{ label: "Event Lighting", href: "/services" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "#" },
],
},
{
title: "Contact", items: [
{ label: "Phone: +92 333 9609084", href: "tel:+923339609084" },
{ label: "Location: Mian Gaan Colony, Kohat", href: "#" },
{ label: "Email Support", href: "#" },
{ label: "WhatsApp Chat", href: "https://wa.me/923339609084" },
],
},
{
title: "Follow Us", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "TikTok", href: "#" },
{ label: "YouTube", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmallSizeLargeTitles"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Sawera Decoration"
navItems={navItems}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{
type: "text", content: "Why Choose Sawera Decoration Center"},
]}
useInvertedBackground={false}
buttons={[
{
text: "Learn More", href: "/about"},
{
text: "Call Us", href: "tel:+923339609084"},
]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardTwo
title="Our Track Record"
description="Years of experience serving Kohat and surrounding areas"
tag="Achievements"
tagAnimation="slide-up"
metrics={[
{
id: "1", value: "500+", description: "Weddings & Events Decorated"},
{
id: "2", value: "10+", description: "Years of Experience"},
{
id: "3", value: "98%", description: "Customer Satisfaction Rate"},
{
id: "4", value: "24/7", description: "Customer Support Available"},
]}
gridVariant="uniform-all-items-equal"
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Clients Say"
description="Hear from satisfied customers who trusted us with their special moments"
tag="Reviews"
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Fatima Khan", handle: "Wedding Client", testimonial: "Sawera Decoration Center made our wedding absolutely magical! The attention to detail and professionalism was outstanding. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg?_wi=2", imageAlt: "happy woman smile portrait professional photo"},
{
id: "2", name: "Ahmed Hassan", handle: "Engagement Client", testimonial: "The team transformed our engagement ceremony into something we'll never forget. Beautiful work and excellent service!", imageSrc: "http://img.b2bpic.net/free-photo/man-winking-thumb-up_1187-3210.jpg?_wi=2", imageAlt: "happy man portrait smiling professional"},
{
id: "3", name: "Zainab Ali", handle: "Mehndi Event", testimonial: "From start to finish, everything was perfect. The decorations were stunning and the team was so cooperative and professional.", imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-black-wall_158595-6868.jpg?_wi=2", imageAlt: "happy woman portrait professional photo"},
{
id: "4", name: "Hassan Malik", handle: "Walima Host", testimonial: "Best decoration service in Kohat! They understood our vision perfectly and executed it flawlessly. Worth every penny!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-man-living-room_329181-3215.jpg?_wi=2", imageAlt: "happy man portrait professional photo"},
{
id: "5", name: "Ayesha Siddiqui", handle: "Birthday Organizer", testimonial: "Incredibly creative team! They made my daughter's birthday venue look like a fairytale. Amazing experience!", imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-woman-posing-studio_176474-29249.jpg?_wi=2", imageAlt: "happy woman professional portrait photo"},
{
id: "6", name: "Muhammad Rafiq", handle: "Corporate Event", testimonial: "Professional, reliable, and creative. Sawera Decoration delivered exactly what we needed for our corporate event. Highly satisfied!", imageSrc: "http://img.b2bpic.net/free-photo/aching-handsome-man-puts-hand-face-isolated-orange-wall_141793-67916.jpg?_wi=2", imageAlt: "professional man portrait happy expression"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
speed={35}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sawera Decoration"
columns={footerColumns}
copyrightText="© 2025 Sawera Decoration Center. All rights reserved."
/>
</div>
</ThemeProvider>
);
}