Update src/app/blog/page.tsx

This commit is contained in:
2026-02-13 21:33:40 +00:00
parent a9d035a0f7
commit 78340b8cc5

View File

@@ -26,16 +26,16 @@ export default function BlogPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="VapeQuit"
brandName="Recruit Talent"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Services", id: "features" },
{ name: "Success Stories", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Download App", href: "contact" }}
button={{ text: "Start Hiring", href: "contact" }}
/>
</div>
@@ -47,8 +47,8 @@ export default function BlogPage() {
<div id="blog" data-section="blog">
<BlogCardTwo
blogs={posts}
title="VapeQuit Blog"
description="Expert insights, success stories, and tips for your smoke-free journey"
title="Recruit Talent Blog"
description="Expert insights, recruitment trends, and hiring best practices"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
@@ -59,22 +59,22 @@ export default function BlogPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="VapeQuit"
copyrightText="© 2025 VapeQuit. All rights reserved."
logoText="Recruit Talent"
copyrightText="© 2025 Recruit Talent NYC. All rights reserved."
columns={[
{
title: "Product", items: [
{ label: "Features", href: "features" },
{ label: "Pricing", href: "#" },
{ label: "Download App", href: "#" },
{ label: "FAQ", href: "faq" }
title: "Services", items: [
{ label: "Executive Search", href: "features" },
{ label: "Specialized Recruitment", href: "features" },
{ label: "Team Building", href: "features" },
{ label: "Screening", href: "features" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Our Team", href: "about" },
{ label: "Blog", href: "/blog" },
{ label: "Contact", href: "contact" }
]
},
@@ -82,7 +82,7 @@ export default function BlogPage() {
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Health Disclaimer", href: "#" }
{ label: "Candidate Privacy", href: "#" }
]
}
]}
@@ -91,4 +91,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}