Merge version_4 into main #3

Merged
bender merged 1 commits from version_4 into main 2026-03-09 05:58:01 +00:00

View File

@@ -4,12 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Award, Brain, Briefcase, CheckCircle, Clock, Crown, DollarSign, Mail, Shield, Target, TrendingUp, Users, Zap, Sparkles, Users2, Gauge, Globe, ArrowRight } from "lucide-react";
import { Award, Brain, Briefcase, CheckCircle, Clock, Crown, DollarSign, Mail, Shield, Target, TrendingUp, Users, Zap, Sparkles, Users2, Gauge, Globe, ArrowRight, BarChart3 } from "lucide-react";
export default function LandingPage() {
return (
@@ -58,8 +57,8 @@ export default function LandingPage() {
]}
avatarText="Trusted by 500+ companies"
buttons={[
{ text: "Post a Job", href: "#contact" },
{ text: "Browse Talent", href: "#services" },
{ text: "Learn More", href: "#services" },
]}
buttonAnimation="slide-up"
/>
@@ -152,21 +151,45 @@ export default function LandingPage() {
/>
</div>
<div id="impact" data-section="impact">
<MetricCardOne
<div id="revenue" data-section="revenue">
<MetricCardTwo
metrics={[
{
id: "1", value: "500", title: "Vetted Professionals", description: "Access to Australia's top talent pool across all industries and experience levels", icon: Users2,
},
id: "1", value: "$2.4M", description: "Revenue Generated for Clients This Month"},
{
id: "2", value: "10", title: "Day Average Placement", description: "Lightning-fast recruitment from job posting to qualified candidate match", icon: Clock,
},
id: "2", value: "$18.7M", description: "Total Revenue Generated to Date"},
{
id: "3", value: "92", title: "% Retention Rate", description: "Performance-focused recruitment ensuring long-term successful placements", icon: TrendingUp,
},
id: "3", value: "157", description: "Active Placements Generating Revenue"},
{
id: "4", value: "100", title: "% Australia-wide", description: "Nationwide coverage connecting talent with opportunities across all regions", icon: Globe,
},
id: "4", value: "94%", description: "Client Satisfaction with Revenue Impact"},
]}
title="Revenue Generated for Our Clients"
description="Measurable success through placements that drive real business results and revenue growth."
tag="Revenue Stats"
tagIcon={BarChart3}
tagAnimation="slide-up"
buttons={[
{ text: "Start Generating Revenue", href: "#contact" },
]}
buttonAnimation="slide-up"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="impact" data-section="impact">
<MetricCardTwo
metrics={[
{
id: "1", value: "500", description: "Vetted Professionals"},
{
id: "2", value: "10", description: "Day Average Placement"},
{
id: "3", value: "92", description: "% Retention Rate"},
{
id: "4", value: "100", description: "% Australia-wide"},
]}
title="Our Impact"
description="Measurable results that demonstrate our commitment to excellence in recruitment."
@@ -189,13 +212,13 @@ export default function LandingPage() {
tag="Let's Connect"
tagIcon={Mail}
tagAnimation="slide-up"
title="Need closers for your business?"
description="Let's help you find the right sales talent fast"
title="Ready to transform your hiring?"
description="Join hundreds of companies finding their perfect talent match with NextHire."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
inputPlaceholder="your@company.com"
buttonText="Hire Closers"
termsText="By clicking Hire Closers you're confirming that you agree with our Terms and Conditions."
buttonText="Get Started"
termsText="By clicking Get Started you're confirming that you agree with our Terms and Conditions."
/>
</div>
@@ -231,4 +254,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}