diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index e842125..b7d23b4 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -7,7 +7,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import Link from "next/link";
-import { Camera, Users, Award, Star } from "lucide-react";
+import { Camera, Users, Award, Star, Wand2, PrinterIcon } from "lucide-react";
export default function AboutPage() {
const navItems = [
@@ -20,37 +20,35 @@ export default function AboutPage() {
const serviceFeatures = [
{
- title: "Our Expertise",
- description: "Professional photography services with premium quality and attention to detail.",
- bentoComponent: "globe",
+ title: "Our Expertise", description: "Professional photography services with premium quality and attention to detail.", bentoComponent: "globe"},
+ {
+ title: "State-of-the-Art Equipment", description: "Latest cameras, lighting, and editing technology for superior results.", bentoComponent: "animated-bar-chart"},
+ {
+ title: "Global Inspiration", description: "International photography techniques combined with local creativity.", bentoComponent: "map"},
+ {
+ title: "Studio Portraits", description: "Professional portrait sessions with professional lighting and backdrops.", bentoComponent: "line-chart"},
+ {
+ title: "Family Photos", description: "Beautiful family portrait sessions to cherish lasting memories.", bentoComponent: "icon-info-cards", items: [
+ { icon: Users, label: "Group Photos", value: "Family" },
+ { icon: Camera, label: "Moments", value: "Bonds" },
+ { icon: Star, label: "Quality", value: "Best" },
+ ],
},
{
- title: "State-of-the-Art Equipment",
- description: "Latest cameras, lighting, and editing technology for superior results.",
- bentoComponent: "animated-bar-chart",
- },
- {
- title: "Global Inspiration",
- description: "International photography techniques combined with local creativity.",
- bentoComponent: "map",
+ title: "Photo Editing & Printing", description: "Professional editing and high-quality photo printing services.", bentoComponent: "3d-stack-cards", items: [
+ { icon: Wand2, title: "Color Correction", subtitle: "Perfect tones", detail: "Professional color grading" },
+ { icon: Star, title: "Enhancement", subtitle: "Premium look", detail: "Advanced retouching" },
+ { icon: PrinterIcon, title: "Printing", subtitle: "High quality", detail: "Professional materials" },
+ ],
},
];
const partnerNames = [
- "Wedding Planning Services",
- "Hotel & Hospitality",
- "Corporate Companies",
- "Event Management",
- "Fashion Brands",
- "Real Estate Firms",
- "Educational Institutions",
- "Medical Practices",
- ];
+ "Wedding Planning Services", "Hotel & Hospitality", "Corporate Companies", "Event Management", "Fashion Brands", "Real Estate Firms", "Educational Institutions", "Medical Practices"];
const footerColumns = [
{
- title: "Services",
- items: [
+ title: "Services", items: [
{ label: "Wedding Photography", href: "/services" },
{ label: "Passport Photos", href: "/services" },
{ label: "Event Coverage", href: "/services" },
@@ -58,8 +56,7 @@ export default function AboutPage() {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Contact", href: "/contact" },
@@ -67,8 +64,7 @@ export default function AboutPage() {
],
},
{
- title: "Connect",
- items: [
+ title: "Connect", items: [
{ label: "Phone", href: "tel:+919876543210" },
{ label: "Email", href: "mailto:info@babulphoto.com" },
{ label: "Address", href: "#" },
@@ -106,20 +102,14 @@ export default function AboutPage() {