Merge version_3 into main #7

Merged
bender merged 1 commits from version_3 into main 2026-03-03 11:07:15 +00:00

View File

@@ -12,26 +12,26 @@ import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"
import { Briefcase, Star, HandshakeIcon, Quote, Zap } from "lucide-react";
const navItems = [
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Candidates", id: "candidates" },
{ name: "Clients", id: "clients" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Candidates", id: "#candidates" },
{ name: "Clients", id: "#clients" },
{ name: "Testimonials", id: "#testimonials" },
];
const footerColumns = [
{
items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "About", href: "#about" },
{ label: "Careers", href: "#careers" },
],
},
{
items: [
{ label: "For Candidates", href: "/candidates" },
{ label: "For Clients", href: "/clients" },
{ label: "Contact", href: "/contact" },
{ label: "For Candidates", href: "#candidates" },
{ label: "For Clients", href: "#clients" },
{ label: "Contact", href: "#contact" },
],
},
{
@@ -60,7 +60,7 @@ export default function HomePage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Contact", href: "/contact" }}
button={{ text: "Contact", href: "#contact" }}
brandName="Adapro"
/>
</div>
@@ -92,8 +92,8 @@ export default function HomePage() {
]}
testimonialRotationInterval={5000}
buttons={[
{ text: "Start a conversation", href: "/contact" },
{ text: "Register as candidate", href: "/candidates" },
{ text: "Start a conversation", href: "#contact" },
{ text: "Register as candidate", href: "#candidates" },
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -183,8 +183,8 @@ export default function HomePage() {
title="Let's start a conversation"
description="Whether you're looking to hire exceptional talent or explore your next career opportunity, we're here to help. No pressure, no sales pitch just honest advice from people who understand your world."
buttons={[
{ text: "Get in touch", href: "/contact" },
{ text: "Book a call", href: "/contact" },
{ text: "Get in touch", href: "#contact" },
{ text: "Book a call", href: "#contact" },
]}
buttonAnimation="slide-up"
background={{ variant: "animated-grid" }}