From 5651059c3bd7bafda6d291145907c02b16070782 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:40:02 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 99 +++++++++++++++++++++++++----------------------- 1 file changed, 51 insertions(+), 48 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6984d20..74ab9fc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,7 @@ import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { Lightbulb, Target, Zap, Phone } from "lucide-react"; +import Link from "next/link"; export default function Home() { return ( @@ -27,31 +28,33 @@ export default function Home() { secondaryButtonStyle="glass" headingFontWeight="semibold" > - +
@@ -73,12 +76,12 @@ export default function Home() { title: "SEO Optimized", description: "Better visibility in search results", icon: Zap } ]} - imageSrc="asset://about-image" + imageSrc="/placeholders/placeholder1.webp" imageAlt="Medical practice team" imagePosition="right" mediaAnimation="none" buttons={[ - { text: "Schedule a Call", href: "#contact" } + { text: "Schedule a Call", href: "contact" } ]} /> @@ -89,29 +92,29 @@ export default function Home() { { title: "Website Design", description: "Custom websites tailored to your practice", icon: Target, mediaItems: [ - { imageSrc: "asset://service-1", imageAlt: "Website design" }, - { imageSrc: "asset://service-2", imageAlt: "Website design 2" } + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Website design" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Website design 2" } ] }, { title: "Patient Portal", description: "Secure patient communication platform", icon: Lightbulb, mediaItems: [ - { imageSrc: "asset://service-3", imageAlt: "Patient portal" }, - { imageSrc: "asset://service-4", imageAlt: "Patient portal 2" } + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Patient portal" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Patient portal 2" } ] }, { title: "SEO Services", description: "Improve your online visibility", icon: Zap, mediaItems: [ - { imageSrc: "asset://service-5", imageAlt: "SEO services" }, - { imageSrc: "asset://service-6", imageAlt: "SEO services 2" } + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "SEO services" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "SEO services 2" } ] }, { title: "Maintenance", description: "24/7 support and updates", icon: Target, mediaItems: [ - { imageSrc: "asset://service-7", imageAlt: "Maintenance" }, - { imageSrc: "asset://service-8", imageAlt: "Maintenance 2" } + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Maintenance" }, + { imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Maintenance 2" } ] } ]} @@ -121,7 +124,7 @@ export default function Home() { useInvertedBackground={false} animationType="slide-up" buttons={[ - { text: "View All Services", href: "#contact" } + { text: "View All Services", href: "contact" } ]} /> @@ -130,19 +133,19 @@ export default function Home() { @@ -180,16 +183,16 @@ export default function Home() { @@ -259,26 +262,26 @@ export default function Home() { columns={[ { title: "Product", items: [ - { label: "Website Design", href: "#services" }, - { label: "Patient Portal", href: "#services" }, - { label: "SEO Services", href: "#services" }, - { label: "Pricing", href: "#pricing" } + { label: "Website Design", href: "services" }, + { label: "Patient Portal", href: "services" }, + { label: "SEO Services", href: "services" }, + { label: "Pricing", href: "pricing" } ] }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Team", href: "#team" }, - { label: "Blog", href: "#" }, - { label: "Contact", href: "#contact" } + { label: "About Us", href: "about" }, + { label: "Team", href: "team" }, + { label: "Blog", href: "/" }, + { label: "Contact", href: "contact" } ] }, { title: "Resources", items: [ - { label: "Documentation", href: "#" }, - { label: "Support", href: "#contact" }, - { label: "FAQ", href: "#faq" }, - { label: "Privacy Policy", href: "#" } + { label: "Documentation", href: "/" }, + { label: "Support", href: "contact" }, + { label: "FAQ", href: "faq" }, + { label: "Privacy Policy", href: "/" } ] } ]} -- 2.49.1