4 Commits

Author SHA1 Message Date
87ce85477d Update src/app/page.tsx 2026-05-15 13:02:19 +00:00
5160dfeb3a Merge version_2 into main
Merge version_2 into main
2026-05-15 12:55:42 +00:00
fa9c483ccf Merge version_2 into main
Merge version_2 into main
2026-05-15 12:55:14 +00:00
1c7e95777c Merge version_2 into main
Merge version_2 into main
2026-05-15 12:54:47 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Sparkles, Monitor, Bot, MessageSquare, TrendingUp, Zap } from "lucide-react"; import { Sparkles, Bot, TrendingUp, Zap } from "lucide-react";
export default function VantageDigitalPage() { export default function VantageDigitalPage() {
return ( return (
@@ -30,10 +30,10 @@ export default function VantageDigitalPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Services", id: "#services" }, { name: "Services", id: "services" },
{ name: "Portfolio", id: "#portfolio" }, { name: "Portfolio", id: "portfolio" },
{ name: "Process", id: "#process" }, { name: "Process", id: "process" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Vantage Digital" brandName="Vantage Digital"
button={{ text: "Get Started", href: "https://wa.me/9647502904552" }} button={{ text: "Get Started", href: "https://wa.me/9647502904552" }}
@@ -49,7 +49,7 @@ export default function VantageDigitalPage() {
background={{ variant: "canvas-reveal" }} background={{ variant: "canvas-reveal" }}
buttons={[ buttons={[
{ text: "Book Consultation", href: "https://wa.me/9647502904552" }, { text: "Book Consultation", href: "https://wa.me/9647502904552" },
{ text: "Our Portfolio", href: "#portfolio" }, { text: "Our Portfolio", href: "portfolio" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
mediaItems={[ mediaItems={[
@@ -123,7 +123,7 @@ export default function VantageDigitalPage() {
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="Vantage Digital" logoText="Vantage Digital"
columns={[ columns={[
{ items: [{ label: "Services", href: "#services" }, { label: "Portfolio", href: "#portfolio" }] }, { items: [{ label: "Services", href: "services" }, { label: "Portfolio", href: "portfolio" }] },
{ items: [{ label: "Email", href: "mailto:vantage.digital.jo@gmail.com" }] } { items: [{ label: "Email", href: "mailto:vantage.digital.jo@gmail.com" }] }
]} ]}
/> />