From 9d338f027ce82ca404877eb32ea22023f31701e2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 22:48:42 +0000 Subject: [PATCH 1/3] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 033cd65..017dd2b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 22:48:48 +0000 Subject: [PATCH 2/3] Update src/components/Layout.tsx --- src/components/Layout.tsx | 95 +++++++++++---------------------------- 1 file changed, 27 insertions(+), 68 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 017dd2b..bdc8cd0 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,90 +7,49 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "/" - }, - { - "name": "Services", - "href": "/services" - }, - { - "name": "First Point", - "href": "/first-point" - }, - { - "name": "About", - "href": "/about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Solution Grid", - "href": "#solution-grid" - } -]; + { name: "Home", href: "/" }, + { name: "Services", href: "/services" }, + { name: "First Point", href: "/first-point" }, + { name: "About", href: "/about" }, + { name: "Contact", href: "/contact" } + ]; return ( + logo="MVD" + logoImageSrc="https://storage.googleapis.com/webild/users/user_3Ey9l3TXYzACjANJWbGifTzu9PO/uploaded-1781477266963-ujv90myn.png" + ctaButton={{ + text: "Schedule Review", href: "/contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Modern Visibility Digital." + rightText="Better Visibility. Faster Responses. More Customers." + />
); -} +} \ No newline at end of file -- 2.49.1 From c9ad6e5c0410f8f5ab7caadfba4750239eb530d3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 22:48:49 +0000 Subject: [PATCH 3/3] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 174 ++++++++++++++++++----------------------- 1 file changed, 75 insertions(+), 99 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 130d45a..e9792b0 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,120 +1,96 @@ -import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; import FeaturesBorderGlow from '@/components/sections/features/FeaturesBorderGlow'; import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; import { MessageSquare, Monitor, Zap } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { return ( <> -
- +
+ - -
+ title="Better Visibility. Faster Responses. More Customers." + description="Professional websites and customer response systems designed to help local businesses attract more customers, respond faster, and never miss an opportunity." + primaryButton={{ + text: "Schedule A Free Business Visibility Review", href: "/contact"}} + secondaryButton={{ + text: "See How It Works", href: "/services"}} + imageSrc="http://img.b2bpic.net/free-photo/3d-abstract-cyber-network-visualization-design_1048-17445.jpg" + avatarsSrc={[]} + avatarText="" + names={[]} + /> +
+
-
- +
+ - -
+ tag="Our Solution" + title="Modern Tools For Growth" + description="We don't just build sites; we build systems that generate results." + features={[ + { + icon: Monitor, + title: "Professional Websites", description: "High-credibility web platforms optimized for lead capture."}, + { + icon: MessageSquare, + title: "Customer Response Systems", description: "Tools to ensure no lead goes unanswered, 24/7."}, + { + icon: Zap, + title: "Ongoing Support", description: "Full maintenance, hosting, and visibility improvements."}, + ]} + /> +
+
-
- +
+ - -
+ tag="Trusted By" + title="Local Businesses Growing Faster" + description="Join the growing network of service providers optimizing their online presence." + names={[ + "Blue Marble Plumbing", "Elite HVAC Solutions", "Summit Roofing Group", "Urban Garden Design", "Peak Performance Fitness"]} + /> +
+
-
- +
+ - -
+ tag="Investment" + title="Plans for Every Scale" + description="Transparent pricing to get your digital presence live." + plans={[ + { + tag: "Essential", price: "$99/mo", description: "Perfect for solo entrepreneurs starting out.", features: [ + "Landing Page", "Hosting Included", "Basic Analytics"], + }, + { + tag: "Professional", price: "$299/mo", description: "Growth focused for established teams.", features: [ + "Full Website Build", "CRM Integration", "Monthly Reporting"], + }, + ]} + /> +
+
-
- +
+ - -
+ tag="Let's Talk" + title="Get Started Today" + description="Sign up for our newsletter to get digital visibility tips direct to your inbox." + inputPlaceholder="Enter your business email..." + buttonText="Subscribe" + imageSrc="http://img.b2bpic.net/free-photo/business-network-background-connecting-dots-technology-design_53876-160244.jpg" + /> +
+
); -} +} \ No newline at end of file -- 2.49.1