Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-15 13:02:22 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
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() {
return (
@@ -30,10 +30,10 @@ export default function VantageDigitalPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Services", id: "#services" },
{ name: "Portfolio", id: "#portfolio" },
{ name: "Process", id: "#process" },
{ name: "Contact", id: "#contact" },
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Process", id: "process" },
{ name: "Contact", id: "contact" },
]}
brandName="Vantage Digital"
button={{ text: "Get Started", href: "https://wa.me/9647502904552" }}
@@ -49,7 +49,7 @@ export default function VantageDigitalPage() {
background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Book Consultation", href: "https://wa.me/9647502904552" },
{ text: "Our Portfolio", href: "#portfolio" },
{ text: "Our Portfolio", href: "portfolio" },
]}
buttonAnimation="slide-up"
mediaItems={[
@@ -123,7 +123,7 @@ export default function VantageDigitalPage() {
<FooterLogoEmphasis
logoText="Vantage Digital"
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" }] }
]}
/>
@@ -131,4 +131,4 @@ export default function VantageDigitalPage() {
</ReactLenis>
</ThemeProvider>
);
}
}