Merge version_2 into main #2

Merged
development merged 1 commits from version_2 into main 2026-01-19 17:42:23 +00:00

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -24,11 +24,11 @@ export default function HomePage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="NEXUS" brandName="NEXUS"
navItems={[ navItems={[
{ name: "Services", id: "/services" }, { name: "Services", id: "services" },
{ name: "Portfolio", id: "/portfolio" }, { name: "Portfolio", id: "portfolio" },
{ name: "About", id: "/about" }, { name: "About", id: "about" },
{ name: "Pricing", id: "/pricing" }, { name: "Pricing", id: "pricing" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Get Started", href: "/contact" }} button={{ text: "Get Started", href: "/contact" }}
/> />
@@ -61,26 +61,27 @@ export default function HomePage() {
/> />
</div> </div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="NEXUS" logoText="NEXUS"
columns={[ columns={[
{ {
items: [ items: [
{ label: "Services", href: "/services" }, { label: "Services", href: "services" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "portfolio" },
{ label: "Pricing", href: "/pricing" } { label: "Pricing", href: "pricing" }
] ]
}, },
{ {
items: [ items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "about" },
{ label: "Team", href: "/about" }, { label: "Team", href: "about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" } { label: "Careers", href: "https://nexus-agency.com/careers" }
] ]
}, },
{ {
items: [ items: [
{ label: "Contact", href: "/contact" }, { label: "Contact", href: "contact" },
{ label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" }, { label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" },
{ label: "+1 (555) 123-4567", href: "tel:+15551234567" } { label: "+1 (555) 123-4567", href: "tel:+15551234567" }
] ]
@@ -94,6 +95,7 @@ export default function HomePage() {
} }
]} ]}
/> />
</div>
</ThemeProvider> </ThemeProvider>
); );
} }