From 83e6c3eae8e0c8e41861113f328d8e26db15d334 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 20:50:07 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 222 +++++++---------------------------------------- 1 file changed, 29 insertions(+), 193 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 745728d..4984748 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { LayoutDashboard, MessageSquare, Rocket } from "lucide-react"; +import { LayoutDashboard, MessageSquare, Rocket, Zap, TrendingUp, Shield, Target } from "lucide-react"; export default function LandingPage() { return ( @@ -31,22 +31,10 @@ export default function LandingPage() { @@ -194,28 +106,8 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} metrics={[ - { - id: "for", - value: "The 'For' List", - title: "Who this is for:", - items: [ - "Businesses with an established offer", - "Service-based companies", - "Businesses ready to scale", - "Companies with a budget for ad spend", - ], - }, - { - id: "not-for", - value: "The 'Not For' List", - title: "Who this is NOT for:", - items: [ - "Getting-rich-quick schemes", - "Businesses without a website", - "Unwilling to invest in ad spend", - "Looking for instant magic without work", - ], - }, + { id: "for", value: "The 'For' List", title: "Who this is for:", items: ["Businesses with an established offer", "Service-based companies", "Businesses ready to scale", "Companies with a budget for ad spend"] }, + { id: "not-for", value: "The 'Not For' List", title: "Who this is NOT for:", items: ["Getting-rich-quick schemes", "Businesses without a website", "Unwilling to invest in ad spend", "Looking for instant magic without work"] }, ]} title="Who this is for vs NOT for" description="Ensure a perfect fit before we partner together." @@ -228,61 +120,13 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Jane Smith", - role: "CEO", - company: "Growth Co", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", - }, - { - id: "2", - name: "Mark Johnson", - role: "Owner", - company: "Service Plus", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg", - }, - { - id: "3", - name: "Sarah Miller", - role: "Director", - company: "Creative Agency", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5353.jpg", - }, - { - id: "4", - name: "David Wilson", - role: "Founder", - company: "Elite Consulting", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg", - }, - { - id: "5", - name: "Emily Davis", - role: "Owner", - company: "Local Pros", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-woman-startup-manager-office-posing-with-confidence-looking_1258-195338.jpg", - }, - ]} - kpiItems={[ - { - value: "150%", - label: "Avg Conversion Increase", - }, - { - value: "20+", - label: "Clients Managed", - }, - { - value: "5/5", - label: "Satisfaction Rating", - }, + { id: "1", name: "Jane Smith", role: "CEO", company: "Growth Co", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg" }, + { id: "2", name: "Mark Johnson", role: "Owner", company: "Service Plus", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg" }, + { id: "3", name: "Sarah Miller", role: "Director", company: "Creative Agency", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5353.jpg" }, + { id: "4", name: "David Wilson", role: "Founder", company: "Elite Consulting", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg" }, + { id: "5", name: "Emily Davis", role: "Owner", company: "Local Pros", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-woman-startup-manager-office-posing-with-confidence-looking_1258-195338.jpg" }, ]} + kpiItems={[{ value: "150%", label: "Avg Conversion Increase" }, { value: "20+", label: "Clients Managed" }, { value: "5/5", label: "Satisfaction Rating" }]} title="Real Results from Real Clients" description="Don't just take my word for it. See what our partners are saying about their new client flow." /> @@ -291,9 +135,7 @@ export default function LandingPage() {
-- 2.49.1