From 1ad4120a6afbef33f3ae9cb66b9b66b4c15a9bb5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 15:32:00 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 61 ++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 36 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2f2239f..32a575a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,8 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; export default function ContactPage() { return ( @@ -22,47 +22,36 @@ export default function ContactPage() { > -
- +
-- 2.49.1 From fe4c6f9973e1882dfcf50c96fb4be54c7ce7b54b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 15:32:00 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 155 +++++++++++++++++------------------------------ 1 file changed, 56 insertions(+), 99 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 61e858e..75c46f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,9 @@ import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Database, Mail, Zap } from "lucide-react"; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import { Database, Mail, Zap, Target, Cpu, BarChart3, ShieldCheck, Rocket, ChevronRight } from "lucide-react"; export default function LandingPage() { return ( @@ -29,16 +31,11 @@ export default function LandingPage() { @@ -100,15 +106,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - icon: Zap, - title: "AI Lead Generation", description: "High-intent lead sourcing automated through AI."}, - { - icon: Database, - title: "Custom AI Agents", description: "Bespoke agents integrated into your existing tech stack."}, - { - icon: Mail, - title: "Workflow Automation", description: "Streamlining outreach, CRM entry, and data management."}, + { icon: Zap, title: "AI Lead Generation", description: "High-intent lead sourcing automated through AI." }, + { icon: Database, title: "Custom AI Agents", description: "Bespoke agents integrated into your existing tech stack." }, + { icon: Mail, title: "Workflow Automation", description: "Streamlining outreach, CRM entry, and data management." }, ]} title="Our Enterprise Solutions" description="Leveraging advanced AI to eliminate manual bottlenecks and maximize ROI." @@ -122,63 +122,20 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} testimonials={[ - { - id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-freelance-developer-drawing-action-plan-flipchart-blonde-young-female-managers-looking-foreign-colleague-which-writing-something-board_197531-3769.jpg"}, - { - id: "2", name: "Michael Chen", role: "CTO", company: "InnovateLab", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg"}, - { - id: "3", name: "Emily Rodriguez", role: "Director", company: "GrowthCo", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg"}, - { - id: "4", name: "David Kim", role: "Manager", company: "StartupXYZ", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/positive-business-team-discussing-report-sitting-meeting-table-with-monitor-holding-looking-documents-business-meeting-teamwork-concept_74855-11909.jpg"}, - { - id: "5", name: "Alex Smith", role: "Head of Ops", company: "GlobalScale", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg"}, + { id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5 }, + { id: "2", name: "Michael Chen", role: "CTO", company: "InnovateLab", rating: 5 }, + { id: "3", name: "Emily Rodriguez", role: "Director", company: "GrowthCo", rating: 5 }, ]} title="What Our Partners Say" description="Enterprise-level results for innovative teams." /> -
- -
-