Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-01-19 17:42:23 +00:00

View File

@@ -1,7 +1,7 @@
"use client";
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 TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -24,11 +24,11 @@ export default function HomePage() {
<NavbarLayoutFloatingOverlay
brandName="NEXUS"
navItems={[
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
@@ -61,39 +61,41 @@ export default function HomePage() {
/>
</div>
<FooterLogoEmphasis
logoText="NEXUS"
columns={[
{
items: [
{ label: "Services", href: "/services" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Pricing", href: "/pricing" }
]
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Team", href: "/about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" }
]
},
{
items: [
{ label: "Contact", href: "/contact" },
{ 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" },
{ label: "Instagram", href: "https://instagram.com/nexus-agency" },
{ label: "LinkedIn", href: "https://linkedin.com/company/nexus-agency" }
]
}
]}
/>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="NEXUS"
columns={[
{
items: [
{ label: "Services", href: "services" },
{ label: "Portfolio", href: "portfolio" },
{ label: "Pricing", href: "pricing" }
]
},
{
items: [
{ label: "About Us", href: "about" },
{ label: "Team", href: "about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" }
]
},
{
items: [
{ label: "Contact", href: "contact" },
{ 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" },
{ label: "Instagram", href: "https://instagram.com/nexus-agency" },
{ label: "LinkedIn", href: "https://linkedin.com/company/nexus-agency" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}