Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d495d9065 | |||
| 1b425d2fef | |||
| 52b15d18f0 | |||
| 5ea5f14c70 | |||
| 5033c460fe | |||
| 78340b8cc5 | |||
| a9d035a0f7 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,21 +10,21 @@ const lato = Lato({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "VapeQuit - Quit Vaping in 30 Days | Health App", description: "Join 47K+ users who quit vaping with VapeQuit. AI-powered tracking, community support, and science-backed strategies. Download the app today.", keywords: "quit vaping, nicotine addiction, vape cessation, health app, quit smoking, stop vaping", robots: {
|
||||
title: "Recruit Talent - Executive Search & Recruitment Services NYC", description: "Top executive recruitment and talent acquisition firm in New York. Find the best candidates for your organization with our expert recruiting services.", keywords: "recruitment, executive search, talent acquisition, NYC, New York recruiting, hiring, staffing", robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
},
|
||||
metadataBase: new URL("https://vapequit.app"),
|
||||
metadataBase: new URL("https://recruittalent.nyc"),
|
||||
alternates: {
|
||||
canonical: "https://vapequit.app"
|
||||
canonical: "https://recruittalent.nyc"
|
||||
},
|
||||
openGraph: {
|
||||
title: "VapeQuit - Quit Vaping in 30 Days", description: "Join thousands in breaking free from vaping. Download VapeQuit for AI-powered tracking and community support.", url: "https://vapequit.app", siteName: "VapeQuit", type: "website", images: [{
|
||||
url: "https://img.b2bpic.net/free-vector/recycle-onboarding-app-screens_52683-33488.jpg", alt: "VapeQuit App Interface"
|
||||
title: "Recruit Talent - Executive Search & Recruitment Services NYC", description: "Top-tier recruitment firm in New York. Connecting exceptional talent with leading organizations.", url: "https://recruittalent.nyc", siteName: "Recruit Talent", type: "website", images: [{
|
||||
url: "https://img.b2bpic.net/free-vector/business-team-concept-illustration_114360-1436.jpg", alt: "Recruit Talent - NYC Recruiting Services"
|
||||
}]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "VapeQuit - Quit Vaping in 30 Days", description: "AI-powered vaping cessation app. Join 47K+ users. Download now.", images: ["https://img.b2bpic.net/free-vector/recycle-onboarding-app-screens_52683-33488.jpg"]
|
||||
card: "summary_large_image", title: "Recruit Talent - Executive Search & Recruitment Services NYC", description: "Premier recruitment firm in New York. Expert talent acquisition for your organization.", images: ["https://img.b2bpic.net/free-vector/business-team-concept-illustration_114360-1436.jpg"]
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1263,4 +1263,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
146
src/app/page.tsx
146
src/app/page.tsx
@@ -10,9 +10,9 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { AlertCircle, Award, Calendar, CheckCircle, Heart, MessageCircle, Shield, Sparkles, Star, TrendingUp, Users, Zap } from "lucide-react";
|
||||
import { Award, Briefcase, CheckCircle, Heart, MessageCircle, Shield, Sparkles, Star, TrendingUp, Users, Zap, Target } from "lucide-react";
|
||||
|
||||
export default function VapeQuitPage() {
|
||||
export default function RecruitmentPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -28,32 +28,32 @@ export default function VapeQuitPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="VapeQuit"
|
||||
brandName="Recruit Talent"
|
||||
navItems={[
|
||||
{ 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"
|
||||
text: "Start Hiring", href: "contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="VapeQuit"
|
||||
description="Take control of your vaping habit with AI-powered tracking, supportive community, and science-backed strategies. Quit vaping in 30 days or less."
|
||||
logoText="Recruit Talent"
|
||||
description="Partner with NYC's leading executive recruitment firm. We connect top talent with exceptional organizations. From C-suite to specialized teams, we deliver the right people for your growth."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Download Now", href: "#contact" },
|
||||
{ text: "Find Top Talent", href: "#contact" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="https://img.b2bpic.net/free-vector/recycle-onboarding-app-screens_52683-33488.jpg"
|
||||
imageAlt="VapeQuit mobile app interface showing quit vaping tracker"
|
||||
imageSrc="https://img.b2bpic.net/free-vector/business-team-concept-illustration_114360-1436.jpg"
|
||||
imageAlt="Professional recruitment and talent acquisition team"
|
||||
frameStyle="browser"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
@@ -62,14 +62,14 @@ export default function VapeQuitPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
title="Why VapeQuit Works"
|
||||
title="Why Recruit Talent NYC"
|
||||
description={[
|
||||
"VapeQuit combines behavioral psychology, personalized tracking, and community support to help you quit vaping successfully. Our app uses evidence-based techniques proven to increase quit rates by 65%.", "Every journey is unique. Our AI learns your triggers, habits, and preferences to deliver customized guidance and encouragement exactly when you need it most."
|
||||
"Recruit Talent is the premier executive search and recruitment firm in New York. With over 15 years of experience, we've helped hundreds of companies build world-class teams and accelerate their growth.", "Our deep network of industry connections, rigorous vetting process, and personalized approach ensures you find not just qualified candidates, but the right cultural fit for your organization."
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
showBorder={true}
|
||||
buttons={[
|
||||
{ text: "Start Your Journey", href: "#contact" }
|
||||
{ text: "Schedule Consultation", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -77,9 +77,9 @@ export default function VapeQuitPage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureBento
|
||||
title="Powerful Tools to Help You Quit"
|
||||
description="Everything you need to succeed, right in your pocket"
|
||||
tag="Features"
|
||||
title="Our Recruitment Services"
|
||||
description="Comprehensive talent solutions for every hiring need"
|
||||
tag="Services"
|
||||
tagIcon={Sparkles}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -87,33 +87,33 @@ export default function VapeQuitPage() {
|
||||
carouselMode="buttons"
|
||||
features={[
|
||||
{
|
||||
title: "Smart Tracking", description: "Monitor your progress with real-time insights and personalized analytics", bentoComponent: "animated-bar-chart"
|
||||
title: "Executive Search", description: "Find C-suite and senior leadership talent to drive your organization forward", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "Manage Triggers", description: "Identify what makes you crave and get instant coping strategies", bentoComponent: "3d-task-list", items: [
|
||||
{ icon: AlertCircle, label: "Stress Management", time: "2 min" },
|
||||
{ icon: Users, label: "Reach Out to Support", time: "5 min" },
|
||||
{ icon: Zap, label: "Take Deep Breaths", time: "1 min" }
|
||||
title: "Specialized Recruitment", description: "Expert hiring for finance, technology, healthcare, and professional services", bentoComponent: "3d-task-list", items: [
|
||||
{ icon: Briefcase, label: "Finance & Accounting", time: "Expert" },
|
||||
{ icon: Target, label: "Technology Leaders", time: "Expert" },
|
||||
{ icon: Shield, label: "Compliance & Risk", time: "Expert" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Community Support", description: "Connect with thousands on the same journey as you", bentoComponent: "orbiting-icons", centerIcon: Heart,
|
||||
title: "Team Building", description: "Build complete high-performance teams from the ground up", bentoComponent: "orbiting-icons", centerIcon: Users,
|
||||
items: [
|
||||
{ icon: Users, ring: 1 },
|
||||
{ icon: MessageCircle, ring: 1 },
|
||||
{ icon: Award, ring: 1 },
|
||||
{ icon: TrendingUp, ring: 2 },
|
||||
{ icon: Award, ring: 2 }
|
||||
{ icon: Briefcase, ring: 2 }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Daily Motivation", description: "Receive personalized encouragement and celebrate milestones", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: CheckCircle, label: "Daily Wins", value: "100%" },
|
||||
{ icon: Calendar, label: "Days Free", value: "30+" },
|
||||
{ icon: Zap, label: "Streaks", value: "7" }
|
||||
title: "Candidate Screening", description: "Rigorous vetting process to ensure cultural and skill alignment", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: CheckCircle, label: "Background Check", value: "100%" },
|
||||
{ icon: Award, label: "Qualification Rate", value: "95%" },
|
||||
{ icon: Zap, label: "Match Success", value: "92%" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Science-Backed Methods", description: "Our program is based on behavioral science and approved by health experts", bentoComponent: "reveal-icon", icon: Shield
|
||||
title: "Industry Expertise", description: "Deep knowledge of NYC market dynamics and talent landscape", bentoComponent: "reveal-icon", icon: Briefcase
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -121,8 +121,8 @@ export default function VapeQuitPage() {
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
title="Real Results from Real People"
|
||||
description="Join thousands who have successfully quit vaping"
|
||||
title="Proven Results"
|
||||
description="Delivering exceptional outcomes for our clients"
|
||||
tag="Impact"
|
||||
tagIcon={TrendingUp}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
@@ -131,13 +131,13 @@ export default function VapeQuitPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "47K+", description: "Users Successfully Quit"
|
||||
id: "1", value: "500+", description: "Successful Placements"
|
||||
},
|
||||
{
|
||||
id: "2", value: "65%", description: "30-Day Success Rate"
|
||||
id: "2", value: "92%", description: "Client Satisfaction Rate"
|
||||
},
|
||||
{
|
||||
id: "3", value: "4.8★", description: "App Store Rating"
|
||||
id: "3", value: "15 Years", description: "NYC Market Leadership"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -145,8 +145,8 @@ export default function VapeQuitPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
title="Success Stories"
|
||||
description="Hear from people who've taken control of their lives"
|
||||
title="What Our Clients Say"
|
||||
description="Hear from organizations that found their perfect team through Recruit Talent"
|
||||
tag="Testimonials"
|
||||
tagIcon={Star}
|
||||
textboxLayout="default"
|
||||
@@ -154,25 +154,25 @@ export default function VapeQuitPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marcus Johnson", role: "Marketing Manager", company: "Tech Startup", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Marcus Johnson smiling"
|
||||
id: "1", name: "Jennifer Walsh", role: "Chief Human Resources Officer", company: "Financial Services Group NYC", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "Jennifer Walsh CHRO"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sarah Chen", role: "Student", company: "University", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg", imageAlt: "Sarah Chen looking confident"
|
||||
id: "2", name: "Michael Chen", role: "VP of Operations", company: "Tech Startup NYC", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Michael Chen VP Operations"
|
||||
},
|
||||
{
|
||||
id: "3", name: "David Rodriguez", role: "Construction Worker", company: "Self-Employed", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "David Rodriguez with friendly expression"
|
||||
id: "3", name: "Sarah Thompson", role: "Managing Partner", company: "Management Consulting", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg", imageAlt: "Sarah Thompson Managing Partner"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Emma Thompson", role: "Healthcare Professional", company: "Hospital", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "Emma Thompson smiling warmly"
|
||||
id: "4", name: "David Rodriguez", role: "Founder & CEO", company: "Healthcare Innovation Inc", rating: 5,
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "David Rodriguez CEO"
|
||||
}
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "30 Days", label: "Average Time to Quit" },
|
||||
{ value: "$2,400", label: "Average Money Saved" },
|
||||
{ value: "30 Days", label: "Average Time to Hire" },
|
||||
{ value: "89%", label: "Still Employed After Year One" },
|
||||
{ value: "98%", label: "Would Recommend" }
|
||||
]}
|
||||
/>
|
||||
@@ -181,7 +181,7 @@ export default function VapeQuitPage() {
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about VapeQuit"
|
||||
description="Everything you need to know about our recruitment services"
|
||||
tag="Help"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -189,22 +189,22 @@ export default function VapeQuitPage() {
|
||||
animationType="smooth"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How does VapeQuit help me quit?", content: "VapeQuit uses a combination of habit tracking, trigger identification, and personalized coaching. The app learns your patterns and provides real-time support when you're most vulnerable to cravings. Our science-backed approach has helped over 47,000 people successfully quit."
|
||||
id: "1", title: "What industries do you specialize in?", content: "We specialize in executive search and recruitment across finance, technology, healthcare, professional services, and manufacturing. Our team has deep expertise in NYC-based organizations across all major sectors. We understand industry-specific talent needs and market dynamics."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Is VapeQuit free?", content: "VapeQuit offers a free trial with core features. Premium features include advanced analytics, one-on-one coaching, and access to our community support network. Most users find the free version sufficient to get started."
|
||||
id: "2", title: "How long does the recruitment process take?", content: "Our average time to placement is 30 days for mid-level positions and 45-60 days for executive roles. This includes candidate sourcing, screening, interviews, and final placement. Timelines vary based on role complexity and specific requirements."
|
||||
},
|
||||
{
|
||||
id: "3", title: "How long does it take to quit?", content: "Our data shows that the average user quits within 30 days. However, everyone's journey is different. Some people quit in 7 days, while others take longer. The important thing is consistent effort and using all available tools."
|
||||
id: "3", title: "Do you offer permanent and contract placements?", content: "Yes, we offer both permanent and contract placement services. Whether you need long-term team members or specialized talent for project work, we can support both hiring models based on your organizational needs."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Can I use VapeQuit if I've tried to quit before?", content: "Absolutely! Many of our most successful users had previous quit attempts. VapeQuit is designed to learn from past attempts and help you avoid the same triggers. Our community support especially helps those who've struggled before."
|
||||
id: "4", title: "What makes your firm different from other recruiters?", content: "Our personalized approach, deep NYC market knowledge, rigorous vetting process, and commitment to cultural fit set us apart. We don't just fill positions—we build the right teams for long-term success. Our 92% client satisfaction rate speaks to our quality."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Is my data private?", content: "Your privacy is our top priority. All your health data is encrypted and never shared with third parties. We comply with HIPAA and other health privacy regulations. You have full control over your data."
|
||||
id: "5", title: "How do you ensure candidate quality?", content: "Every candidate undergoes background checks, skills verification, and cultural alignment assessments. We conduct multiple interview rounds and check references thoroughly. Our 95% qualification rate ensures you meet only vetted, qualified professionals."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What if I relapse?", content: "Relapses are part of recovery. VapeQuit doesn't judge—we're here to support you. When a relapse happens, our app helps you understand what triggered it and get back on track. Our community is there to encourage you every step of the way."
|
||||
id: "6", title: "What is your guarantee if a hire doesn't work out?", content: "We offer a 90-day replacement guarantee on all placements. If a candidate doesn't meet expectations, we'll provide a qualified replacement at no additional cost. Your satisfaction is our priority, and we stand behind every placement."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -212,24 +212,24 @@ export default function VapeQuitPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Ready to Take Control?"
|
||||
description="Download VapeQuit today and start your journey to a healthier, nicotine-free life. Join thousands who have already made the change."
|
||||
title="Ready to Transform Your Team?"
|
||||
description="Connect with our recruitment experts today. Let's discuss your hiring needs and find the perfect talent for your organization. Based in NYC, serving clients globally."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/woman-using-her-mobile-phone-blurred-background_1134-273.jpg"
|
||||
imageAlt="Person using VapeQuit app on mobile phone"
|
||||
imageSrc="https://img.b2bpic.net/free-vector/business-team-concept-illustration_114360-1436.jpg"
|
||||
imageAlt="Professional recruitment consultation with recruitment team"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Get Started"
|
||||
buttonText="Schedule Consultation"
|
||||
inputs={[
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Enter your email", required: true
|
||||
name: "company", type: "text", placeholder: "Company Name", required: true
|
||||
},
|
||||
{
|
||||
name: "phone", type: "tel", placeholder: "Phone number (optional)", required: false
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true
|
||||
}
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell us about your quit journey or questions...", rows: 4,
|
||||
name: "requirements", placeholder: "Describe your hiring needs and ideal candidate profile...", rows: 4,
|
||||
required: false
|
||||
}}
|
||||
/>
|
||||
@@ -237,30 +237,30 @@ export default function VapeQuitPage() {
|
||||
|
||||
<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 Services", href: "features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Contact", href: "contact" }
|
||||
{ label: "Our Team", href: "about" },
|
||||
{ label: "Case Studies", href: "#" },
|
||||
{ label: "Contact Us", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Health Disclaimer", href: "#" }
|
||||
{ label: "Candidate Privacy", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -268,4 +268,4 @@ export default function VapeQuitPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,11 +83,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<ReactLenis root>
|
||||
<div id="navbar" data-section="navbar">
|
||||
<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"},
|
||||
@@ -101,12 +101,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</main>
|
||||
<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":"Company","items":[{"label":"About Us","href":"about"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Health Disclaimer","href":"#"}]}
|
||||
{"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":"Our Team","href":"about"},{"label":"Blog","href":"/blog"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Candidate Privacy","href":"#"}]}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -132,11 +132,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<ReactLenis root>
|
||||
<div id="navbar" data-section="navbar">
|
||||
<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"},
|
||||
@@ -158,12 +158,12 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</main>
|
||||
<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":"Company","items":[{"label":"About Us","href":"about"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Health Disclaimer","href":"#"}]}
|
||||
{"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":"Our Team","href":"about"},{"label":"Blog","href":"/blog"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Candidate Privacy","href":"#"}]}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -188,11 +188,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<ReactLenis root>
|
||||
<div id="navbar" data-section="navbar">
|
||||
<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"},
|
||||
@@ -239,16 +239,16 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</div>
|
||||
<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":"Company","items":[{"label":"About Us","href":"about"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Health Disclaimer","href":"#"}]}
|
||||
{"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":"Our Team","href":"about"},{"label":"Blog","href":"/blog"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Candidate Privacy","href":"#"}]}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,11 +36,11 @@ export default function ShopPage() {
|
||||
<ReactLenis root>
|
||||
<div id="navbar" data-section="navbar">
|
||||
<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"},
|
||||
@@ -54,12 +54,12 @@ export default function ShopPage() {
|
||||
</main>
|
||||
<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":"Company","items":[{"label":"About Us","href":"about"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Health Disclaimer","href":"#"}]}
|
||||
{"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":"Our Team","href":"about"},{"label":"Blog","href":"/blog"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Candidate Privacy","href":"#"}]}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -84,11 +84,11 @@ export default function ShopPage() {
|
||||
<ReactLenis root>
|
||||
<div id="navbar" data-section="navbar">
|
||||
<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"},
|
||||
@@ -110,16 +110,16 @@ export default function ShopPage() {
|
||||
</div>
|
||||
<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":"Company","items":[{"label":"About Us","href":"about"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Health Disclaimer","href":"#"}]}
|
||||
{"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":"Our Team","href":"about"},{"label":"Blog","href":"/blog"},{"label":"Contact","href":"contact"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Candidate Privacy","href":"#"}]}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user