Update src/app/about/page.tsx

This commit is contained in:
2026-01-22 14:53:40 +00:00
parent 93c0358d62
commit 7a8c2cd5a5

View File

@@ -6,6 +6,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Sparkles, TrendingUp, Instagram, Linkedin, Twitter } from 'lucide-react'; import { Sparkles, TrendingUp, Instagram, Linkedin, Twitter } from 'lucide-react';
import Link from "next/link";
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -25,14 +26,14 @@ export default function AboutPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Alesha" brandName="Alesha"
navItems={[ navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" }, { name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Get in Touch", text: "Get in Touch", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -61,20 +62,10 @@ export default function AboutPage() {
tagIcon={TrendingUp} tagIcon={TrendingUp}
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "2K+", title: "Fashion Week Appearances", description: "Elite runway shows across Paris, Milan, New York, and London", imageSrc: "https://img.b2bpic.net/free-photo/seductive-close-up-photo-beautiful-blonde-girl-cocktail-silk-dress-seduces-someone-touching-her-lips-by-her-finger_639032-835.jpg", imageAlt: "Fashion runway show photography"
value: "2K+",
title: "Fashion Week Appearances",
description: "Elite runway shows across Paris, Milan, New York, and London",
imageSrc: "https://img.b2bpic.net/free-photo/seductive-close-up-photo-beautiful-blonde-girl-cocktail-silk-dress-seduces-someone-touching-her-lips-by-her-finger_639032-835.jpg",
imageAlt: "Fashion runway show photography"
}, },
{ {
id: "2", id: "2", value: "5K+", title: "Campaign Bookings", description: "Successful placements with luxury brands and editorial publications", imageSrc: "https://img.b2bpic.net/free-photo/happy-attractive-woman-standing-gray-looking-camera_231208-9141.jpg", imageAlt: "Professional editorial photography session"
value: "5K+",
title: "Campaign Bookings",
description: "Successful placements with luxury brands and editorial publications",
imageSrc: "https://img.b2bpic.net/free-photo/happy-attractive-woman-standing-gray-looking-camera_231208-9141.jpg",
imageAlt: "Professional editorial photography session"
} }
]} ]}
animationType="slide-up" animationType="slide-up"