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,39 +61,41 @@ export default function HomePage() {
/> />
</div> </div>
<FooterLogoEmphasis <div id="footer" data-section="footer">
logoText="NEXUS" <FooterLogoEmphasis
columns={[ logoText="NEXUS"
{ columns={[
items: [ {
{ label: "Services", href: "/services" }, items: [
{ label: "Portfolio", href: "/portfolio" }, { label: "Services", href: "services" },
{ label: "Pricing", href: "/pricing" } { label: "Portfolio", href: "portfolio" },
] { label: "Pricing", href: "pricing" }
}, ]
{ },
items: [ {
{ label: "About Us", href: "/about" }, items: [
{ label: "Team", href: "/about" }, { label: "About Us", href: "about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" } { label: "Team", href: "about" },
] { label: "Careers", href: "https://nexus-agency.com/careers" }
}, ]
{ },
items: [ {
{ label: "Contact", href: "/contact" }, items: [
{ label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" }, { label: "Contact", href: "contact" },
{ label: "+1 (555) 123-4567", href: "tel:+15551234567" } { label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" },
] { label: "+1 (555) 123-4567", href: "tel:+15551234567" }
}, ]
{ },
items: [ {
{ label: "Twitter", href: "https://twitter.com/nexus-agency" }, items: [
{ label: "Instagram", href: "https://instagram.com/nexus-agency" }, { label: "Twitter", href: "https://twitter.com/nexus-agency" },
{ label: "LinkedIn", href: "https://linkedin.com/company/nexus-agency" } { label: "Instagram", href: "https://instagram.com/nexus-agency" },
] { label: "LinkedIn", href: "https://linkedin.com/company/nexus-agency" }
} ]
]} }
/> ]}
/>
</div>
</ThemeProvider> </ThemeProvider>
); );
} }