Merge version_4 into main #5

Merged
bender merged 1 commits from version_4 into main 2026-04-15 14:00:38 +00:00

View File

@@ -3,15 +3,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { Award, Briefcase, Globe } from "lucide-react";
export default function LandingPage() {
@@ -115,55 +115,53 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
<TestimonialCardTen
title="Professional Endorsements"
description="Peer and stakeholder perspectives on impact and operational rigor."
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{ id: "t1", name: "Business Partner", imageSrc: "http://img.b2bpic.net/free-photo/successful-executive-businessman-office_1098-21340.jpg" },
{ id: "t2", name: "Divisional Lead", imageSrc: "http://img.b2bpic.net/free-photo/male-female-graphic-designers-interacting-with-each-other_1170-2967.jpg" },
{ id: "t1", title: "Strategic Vision", quote: "A masterful navigator of complex labor landscapes with an uncompromising focus on results.", name: "Business Partner", role: "CEO, Regional Operations", imageSrc: "http://img.b2bpic.net/free-photo/successful-executive-businessman-office_1098-21340.jpg" },
{ id: "t2", title: "Operational Excellence", quote: "Transformed our HR function into a true driver of commercial success.", name: "Divisional Lead", role: "Director, HR Strategy", imageSrc: "http://img.b2bpic.net/free-photo/male-female-graphic-designers-interacting-with-each-other_1170-2967.jpg" },
]}
cardTitle="Client & Colleague Feedback"
cardTag="Endorsements"
cardAnimation="blur-reveal"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
<FaqSplitMedia
title="Expert Advisory Insights"
description="Rigorous responses to the most critical organizational inquiries."
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "What is fractional HR?", content: "Executive-level strategic HR advisory without the full-time overhead." },
{ id: "q2", title: "What markets do you cover?", content: "South Africa, West Africa, and broader Sub-Saharan Africa." },
]}
title="Advisory Insights"
description="Common questions regarding fractional HR partnerships."
faqsAnimation="blur-reveal"
faqs={[
{ id: "q1", title: "What is fractional HR leadership?", content: "High-caliber strategic advisory that deploys executive intelligence without the permanent cost structure—essential for agile growth." },
{ id: "q2", title: "How is cross-border risk managed?", content: "Through meticulous legislative alignment and culturally-nuanced implementation frameworks tailored for high-stakes environments." },
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={true}
<ContactCenter
tag="Consultation"
title="Inquire for Expertise"
description="For discerning organizations seeking strategic capital activation."
background={{ variant: "rotated-rays-static" }}
text="Ready to activate purposeful HR strategy? Let's connect."
buttons={[
{ text: "Email Nosipho", href: "mailto:nbulose@outlook.com" },
{ text: "LinkedIn Profile", href: "https://linkedin.com/in/nosipho-bulose-486b281" },
]}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Nosipho Bulose"
<FooterSimple
bottomLeftText="© 2025 Nosipho Bulose | Strategy & Operations"
bottomRightText="All Rights Reserved."
columns={[
{ title: "Navigation", items: [{ label: "Profile", href: "#hero" }, { label: "Portfolio", href: "#portfolio" }, { label: "Contact", href: "#contact" }] },
{ title: "Professional", items: [{ label: "LinkedIn", href: "https://linkedin.com/in/nosipho-bulose-486b281" }, { label: "Email", href: "mailto:nbulose@outlook.com" }] },
{ title: "Insights", items: [{ label: "LinkedIn", href: "https://linkedin.com/in/nosipho-bulose-486b281" }, { label: "Direct Email", href: "mailto:nbulose@outlook.com" }] },
]}
copyrightText="© 2025 Nosipho Bulose. All Rights Reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}