diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9d00cc4..eb1ced9 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -13,7 +13,7 @@ export default function AboutPage() { const navItems = [ { name: "Services", id: "services" }, { name: "Work", id: "work" }, - { name: "About", id: "about" }, + { name: "About", id: "/about" }, { name: "Team", id: "team" }, { name: "Contact", id: "/contact" }, ]; @@ -54,39 +54,19 @@ export default function AboutPage() { description="Creative strategists and digital innovators dedicated to your brand's success." tag="Our Team" tagIcon={Users} - gridVariant="four-items-2x2-equal-grid" + gridVariant="three-columns-all-equal-width" animationType="blur-reveal" textboxLayout="default" useInvertedBackground={false} members={[ { - id: "team-1", - name: "Alexandra Chen", - role: "Creative Director", - imageSrc: "http://img.b2bpic.net/free-photo/mature-businesswoman-leading-business-meeting_329181-19246.jpg", - imageAlt: "Alexandra Chen, Creative Director", - }, + id: "team-1", name: "Alexandra Chen", role: "Creative Director", imageSrc: "http://img.b2bpic.net/free-photo/mature-businesswoman-leading-business-meeting_329181-19246.jpg", imageAlt: "Alexandra Chen, Creative Director"}, { - id: "team-2", - name: "Marcus Rodriguez", - role: "Strategy Lead", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-manager-with-digital-tablet_1262-1058.jpg", - imageAlt: "Marcus Rodriguez, Strategy Lead", - }, + id: "team-2", name: "Marcus Rodriguez", role: "Strategy Lead", imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-manager-with-digital-tablet_1262-1058.jpg", imageAlt: "Marcus Rodriguez, Strategy Lead"}, { - id: "team-3", - name: "Sophie Williams", - role: "Content Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-charming-brunette-woman-dressed-gray-elegant-jacket-holding-smartphone-room-with-loft-interior-looking-away_613910-18250.jpg", - imageAlt: "Sophie Williams, Content Specialist", - }, + id: "team-3", name: "Sophie Williams", role: "Content Specialist", imageSrc: "http://img.b2bpic.net/free-photo/smiling-charming-brunette-woman-dressed-gray-elegant-jacket-holding-smartphone-room-with-loft-interior-looking-away_613910-18250.jpg", imageAlt: "Sophie Williams, Content Specialist"}, { - id: "team-4", - name: "David Park", - role: "Analytics Expert", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-latin-businessman-examining-sales-data-while-working-home_662251-890.jpg", - imageAlt: "David Park, Analytics Expert", - }, + id: "team-4", name: "David Park", role: "Analytics Expert", imageSrc: "http://img.b2bpic.net/free-photo/handsome-latin-businessman-examining-sales-data-while-working-home_662251-890.jpg", imageAlt: "David Park, Analytics Expert"}, ]} /> @@ -100,25 +80,9 @@ export default function AboutPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "TechFlow", - "Luxe Collective", - "FitVibe", - "CloudSync", - "Innovate Hub", - "Digital Pulse", - "Brand X", - "NextGen Media", - ]} + "TechFlow", "Luxe Collective", "FitVibe", "CloudSync", "Innovate Hub", "Digital Pulse", "Brand X", "NextGen Media"]} logos={[ - "http://img.b2bpic.net/free-vector/tech-logotype_1043-9.jpg", - "http://img.b2bpic.net/free-vector/elegant-minimalist-luxury-fashion-blog-logo-template_742173-17128.jpg", - "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg", - "http://img.b2bpic.net/free-vector/gradient-instagram-shop-logo-template_23-2149704606.jpg", - "http://img.b2bpic.net/free-vector/typography-logo-template_23-2150529526.jpg", - "http://img.b2bpic.net/free-vector/gradient-data-logo-template_23-2149202347.jpg", - "http://img.b2bpic.net/free-vector/retro-restaurant-badges_23-2147508372.jpg", - "http://img.b2bpic.net/free-vector/different-travel-logos-set_23-2148629900.jpg", - ]} + "http://img.b2bpic.net/free-vector/tech-logotype_1043-9.jpg", "http://img.b2bpic.net/free-vector/elegant-minimalist-luxury-fashion-blog-logo-template_742173-17128.jpg", "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg", "http://img.b2bpic.net/free-vector/gradient-instagram-shop-logo-template_23-2149704606.jpg", "http://img.b2bpic.net/free-vector/typography-logo-template_23-2150529526.jpg", "http://img.b2bpic.net/free-vector/gradient-data-logo-template_23-2149202347.jpg", "http://img.b2bpic.net/free-vector/retro-restaurant-badges_23-2147508372.jpg", "http://img.b2bpic.net/free-vector/different-travel-logos-set_23-2148629900.jpg"]} showCard={true} speed={40} /> @@ -130,8 +94,7 @@ export default function AboutPage() { copyrightText="© 2025 Elevate Media. All rights reserved." columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Social Strategy", href: "/services" }, { label: "Content Creation", href: "/services" }, { label: "Community Management", href: "/services" }, @@ -139,8 +102,7 @@ export default function AboutPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, { label: "Case Studies", href: "/work" }, @@ -148,8 +110,7 @@ export default function AboutPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Social Media Guide", href: "/" }, { label: "Content Calendar", href: "/" }, { label: "Best Practices", href: "/" }, @@ -157,8 +118,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Cookie Policy", href: "/" }, diff --git a/src/app/page.tsx b/src/app/page.tsx index 5c7e70e..6858944 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,7 +17,7 @@ export default function HomePage() { const navItems = [ { name: "Services", id: "services" }, { name: "Work", id: "work" }, - { name: "About", id: "about" }, + { name: "About", id: "/about" }, { name: "Team", id: "team" }, { name: "Contact", id: "/contact" }, ]; @@ -43,7 +43,7 @@ export default function HomePage() { @@ -226,29 +169,17 @@ export default function HomePage() { useInvertedBackground={true} metrics={[ { - id: "metric-1", - icon: BarChart3, - title: "Avg. Engagement Rate", - value: "12.4%", - }, + id: "metric-1", icon: BarChart3, + title: "Avg. Engagement Rate", value: "12.4%"}, { - id: "metric-2", - icon: Users, - title: "Active Clients", - value: "50+", - }, + id: "metric-2", icon: Users, + title: "Active Clients", value: "50+"}, { - id: "metric-3", - icon: TrendingUp, - title: "Growth Average", - value: "235%", - }, + id: "metric-3", icon: TrendingUp, + title: "Growth Average", value: "235%"}, { - id: "metric-4", - icon: Award, - title: "Industry Awards", - value: "15", - }, + id: "metric-4", icon: Award, + title: "Industry Awards", value: "15"}, ]} /> @@ -263,59 +194,17 @@ export default function HomePage() { useInvertedBackground={true} testimonials={[ { - id: "test-1", - title: "Exceeded All Our Expectations", - quote: "Elevate Media completely transformed our social strategy. We've seen a 300% increase in engagement and our community has become our biggest brand advocates. Exceptional work!", - name: "Jessica Thompson", - role: "Founder & CEO", - imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=2", - imageAlt: "Jessica Thompson", - }, + id: "test-1", title: "Exceeded All Our Expectations", quote: "Elevate Media completely transformed our social strategy. We've seen a 300% increase in engagement and our community has become our biggest brand advocates. Exceptional work!", name: "Jessica Thompson", role: "Founder & CEO", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Jessica Thompson"}, { - id: "test-2", - title: "Brilliant Strategic Approach", - quote: "What sets Elevate Media apart is their deep understanding of brand positioning and audience psychology. They didn't just create content; they built a movement around our brand.", - name: "Michael Chang", - role: "CMO, Tech Innovations", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", - imageAlt: "Michael Chang", - }, + id: "test-2", title: "Brilliant Strategic Approach", quote: "What sets Elevate Media apart is their deep understanding of brand positioning and audience psychology. They didn't just create content; they built a movement around our brand.", name: "Michael Chang", role: "CMO, Tech Innovations", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Michael Chang"}, { - id: "test-3", - title: "ROI Beyond Imagination", - quote: "The data-driven approach and transparent reporting gave us confidence every step of the way. Our revenue increased 450% within the first year of partnership.", - name: "Emma Johnson", - role: "Owner, Luxury Retail", - imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=3", - imageAlt: "Emma Johnson", - }, + id: "test-3", title: "ROI Beyond Imagination", quote: "The data-driven approach and transparent reporting gave us confidence every step of the way. Our revenue increased 450% within the first year of partnership.", name: "Emma Johnson", role: "Owner, Luxury Retail", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Emma Johnson"}, { - id: "test-4", - title: "True Partnership and Support", - quote: "Not just an agency, but a true partner invested in our success. Their team is responsive, creative, and truly understands our vision.", - name: "James Mitchell", - role: "Director, Fitness Brand", - imageSrc: "http://img.b2bpic.net/free-photo/confident-handsome-middle-aged-entrepreneur_1262-4871.jpg", - imageAlt: "James Mitchell", - }, + id: "test-4", title: "True Partnership and Support", quote: "Not just an agency, but a true partner invested in our success. Their team is responsive, creative, and truly understands our vision.", name: "James Mitchell", role: "Director, Fitness Brand", imageSrc: "http://img.b2bpic.net/free-photo/confident-handsome-middle-aged-entrepreneur_1262-4871.jpg", imageAlt: "James Mitchell"}, { - id: "test-5", - title: "Game-Changing Results", - quote: "Elevate Media's strategic insights transformed our social media from an afterthought to a revenue-generating channel. Highly recommended!", - name: "Sofia Bergström", - role: "CEO, E-Commerce", - imageSrc: "http://img.b2bpic.net/free-photo/she-s-ready-making-coffee_329181-2917.jpg", - imageAlt: "Sofia Bergström", - }, + id: "test-5", title: "Game-Changing Results", quote: "Elevate Media's strategic insights transformed our social media from an afterthought to a revenue-generating channel. Highly recommended!", name: "Sofia Bergström", role: "CEO, E-Commerce", imageSrc: "http://img.b2bpic.net/free-photo/she-s-ready-making-coffee_329181-2917.jpg", imageAlt: "Sofia Bergström"}, { - id: "test-6", - title: "Professional Excellence", - quote: "The level of professionalism, creativity, and strategic thinking is unmatched. They didn't just deliver content; they delivered business growth.", - name: "Robert Chen", - role: "Founder, Digital Agency", - imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1082.jpg", - imageAlt: "Robert Chen", - }, + id: "test-6", title: "Professional Excellence", quote: "The level of professionalism, creativity, and strategic thinking is unmatched. They didn't just deliver content; they delivered business growth.", name: "Robert Chen", role: "Founder, Digital Agency", imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1082.jpg", imageAlt: "Robert Chen"}, ]} /> @@ -329,25 +218,9 @@ export default function HomePage() { textboxLayout="default" useInvertedBackground={false} names={[ - "TechFlow", - "Luxe Collective", - "FitVibe", - "CloudSync", - "Innovate Hub", - "Digital Pulse", - "Brand X", - "NextGen Media", - ]} + "TechFlow", "Luxe Collective", "FitVibe", "CloudSync", "Innovate Hub", "Digital Pulse", "Brand X", "NextGen Media"]} logos={[ - "http://img.b2bpic.net/free-vector/tech-logotype_1043-9.jpg", - "http://img.b2bpic.net/free-vector/elegant-minimalist-luxury-fashion-blog-logo-template_742173-17128.jpg", - "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg", - "http://img.b2bpic.net/free-vector/gradient-instagram-shop-logo-template_23-2149704606.jpg", - "http://img.b2bpic.net/free-vector/typography-logo-template_23-2150529526.jpg", - "http://img.b2bpic.net/free-vector/gradient-data-logo-template_23-2149202347.jpg", - "http://img.b2bpic.net/free-vector/retro-restaurant-badges_23-2147508372.jpg", - "http://img.b2bpic.net/free-vector/different-travel-logos-set_23-2148629900.jpg", - ]} + "http://img.b2bpic.net/free-vector/tech-logotype_1043-9.jpg", "http://img.b2bpic.net/free-vector/elegant-minimalist-luxury-fashion-blog-logo-template_742173-17128.jpg", "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148161323.jpg", "http://img.b2bpic.net/free-vector/gradient-instagram-shop-logo-template_23-2149704606.jpg", "http://img.b2bpic.net/free-vector/typography-logo-template_23-2150529526.jpg", "http://img.b2bpic.net/free-vector/gradient-data-logo-template_23-2149202347.jpg", "http://img.b2bpic.net/free-vector/retro-restaurant-badges_23-2147508372.jpg", "http://img.b2bpic.net/free-vector/different-travel-logos-set_23-2148629900.jpg"]} showCard={true} speed={40} /> @@ -359,8 +232,7 @@ export default function HomePage() { copyrightText="© 2025 Elevate Media. All rights reserved." columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Social Strategy", href: "/services" }, { label: "Content Creation", href: "/services" }, { label: "Community Management", href: "/services" }, @@ -368,8 +240,7 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, { label: "Case Studies", href: "/work" }, @@ -377,8 +248,7 @@ export default function HomePage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Social Media Guide", href: "/" }, { label: "Content Calendar", href: "/" }, { label: "Best Practices", href: "/" }, @@ -386,8 +256,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Cookie Policy", href: "/" },