Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 34054d66ea | |||
| 5409401293 | |||
| ef556209a2 | |||
| 04e308f583 | |||
| 0efe18d0dd | |||
| bc39457760 | |||
| fc869ce997 | |||
| 290ace9b7b | |||
| 0d8295cf41 | |||
| 544ee7ff0b | |||
| b6164881e2 | |||
| dbfda6ac4a | |||
| b7c0f4b141 | |||
| 0efe730860 | |||
| 65018a15cd | |||
| 2d99079eb5 | |||
| 99146e3807 | |||
| 67b6def961 | |||
| cbca94e102 | |||
| a733c7a474 | |||
| 775792f30d | |||
| 78ecbc8e15 | |||
| 86a7640f7e | |||
| 315c5d5a6f | |||
| 40f25455ce |
@@ -18,32 +18,28 @@ export default function ContactPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About", href: "/about" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "FAQ", href: "#" },
|
||||
{ label: "Help Center", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow Us",
|
||||
items: [
|
||||
title: "Follow Us", items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "Email", href: "mailto:hello@kufferconsulting.com" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
@@ -72,9 +68,7 @@ export default function ContactPage() {
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Book Consultation",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Book Consultation", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
||||
import BlogCardTwo from "@/components/sections/blog/BlogCardTwo";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
|
||||
export default function InsightsPage() {
|
||||
@@ -107,7 +107,7 @@ export default function InsightsPage() {
|
||||
</div>
|
||||
|
||||
<div id="insights-blog" data-section="insights-blog">
|
||||
<BlogCardThree
|
||||
<BlogCardTwo
|
||||
blogs={blogs}
|
||||
animationType="slide-up"
|
||||
carouselMode="buttons"
|
||||
|
||||
@@ -6,22 +6,10 @@ import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Küffer Consulting | B2B Sales Growth",
|
||||
@@ -49,6 +37,15 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -57,9 +54,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
134
src/app/page.tsx
134
src/app/page.tsx
@@ -8,6 +8,7 @@ import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
import TimelineProcessFlow from "@/components/cardStack/layouts/timelines/TimelineProcessFlow";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
|
||||
@@ -69,21 +70,24 @@ export default function HomePage() {
|
||||
navItems={navItems}
|
||||
brandName="Küffer Consulting"
|
||||
button={{
|
||||
text: "Book Consultation", href: "/contact"}}
|
||||
text: "Book a Free Strategy Call", href: "/contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home-hero" data-section="home-hero">
|
||||
<HeroSplit
|
||||
title="Scale Your B2B Sales with Data-Driven Lead Generation"
|
||||
description="We help startups and SMEs build predictable sales pipelines through expert strategy, qualified lead generation, and modern sales systems—without the overhead of a full internal sales team."
|
||||
title="Scale Your B2B Sales Pipeline"
|
||||
description="Generate qualified B2B leads and build scalable sales systems that accelerate growth without the overhead of a full internal team."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="6+ Years of Expertise"
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Book a Consultation", href: "/contact" },
|
||||
{ text: "Get Qualified Leads", href: "/services" },
|
||||
{ text: "Book a Free Strategy Call", href: "/contact" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kd1bih"
|
||||
imageAlt="B2B sales pipeline growth data visualization"
|
||||
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop"
|
||||
imageAlt="B2B sales pipeline growth - business professionals in meeting"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -97,6 +101,29 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home-problem" data-section="home-problem">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "Why B2B Companies Struggle with Sales"
|
||||
},
|
||||
{
|
||||
type: "image", src: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop", alt: "Business team discussing sales strategy"
|
||||
},
|
||||
{
|
||||
type: "text", content: "Building a predictable sales pipeline is challenging. Most founders and small business leaders lack dedicated sales expertise, don't have time to prospect, struggle to qualify leads properly, and can't afford full-time sales teams. Traditional agencies deliver volume, not quality. That's where we step in."
|
||||
},
|
||||
{
|
||||
type: "text", content: "We understand the unique challenges of B2B sales: long sales cycles, multiple decision-makers, complex buying processes, and the need for technical credibility. Our approach combines data-driven strategy with hands-on execution."
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Learn How We Help", href: "/services" }]}
|
||||
useInvertedBackground={true}
|
||||
containerClassName="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8"
|
||||
headingClassName="text-2xl sm:text-3xl font-extrabold mb-6 space-y-4"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home-services" data-section="home-services">
|
||||
<FeatureCardOne
|
||||
title="Our Services"
|
||||
@@ -105,17 +132,17 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "B2B Lead Generation", description:
|
||||
"Identification and delivery of qualified leads tailored to your ideal customer profile. Our data-driven approach ensures every lead has genuine potential.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=msc6kz&_wi=1", imageAlt: "qualified leads generation targeting B2B"},
|
||||
title: "Lead Generation", description:
|
||||
"Identification and delivery of qualified leads tailored to your ideal customer profile. Our data-driven approach ensures every lead has genuine potential for your business.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=1", imageAlt: "qualified leads generation targeting B2B"},
|
||||
{
|
||||
title: "Sales Strategy Consulting", description:
|
||||
"Develop scalable, data-driven sales processes tailored to your business model. We transform your sales approach into a predictable, repeatable system.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n2vf8c&_wi=1", imageAlt: "sales strategy planning business development"},
|
||||
title: "Full-Cycle Sales Execution", description:
|
||||
"Complete management of your sales funnel from prospecting to closing. We handle the entire process so you can focus on product and operations.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=2", imageAlt: "full-cycle sales management CRM system"},
|
||||
{
|
||||
title: "Full-Cycle Sales Management", description:
|
||||
"Complete management of your sales funnel from prospecting to closing. We handle the entire process so you can focus on product and operations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d1qn43&_wi=1", imageAlt: "full-cycle sales management CRM system"},
|
||||
title: "Sales Strategy", description:
|
||||
"Develop scalable, data-driven sales processes tailored to your business model. We transform your sales approach into a predictable, repeatable system.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=3", imageAlt: "sales strategy planning business development"},
|
||||
{
|
||||
title: "Sales Technology & Automation", description:
|
||||
"Implementation of modern sales tools, CRM optimization, and automation systems. We integrate technology that scales with your business.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=fh389v&_wi=1", imageAlt: "sales technology automation CRM platform"},
|
||||
title: "Sales Automation", description:
|
||||
"Implementation of modern sales tools, CRM optimization, and automation systems. We integrate technology that scales with your business.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=4", imageAlt: "sales technology automation CRM platform"},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
@@ -131,13 +158,19 @@ export default function HomePage() {
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "Why Choose Küffer Consulting?"},
|
||||
type: "text", content: "Why Küffer Advisory"
|
||||
},
|
||||
{
|
||||
type: "image", src: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop", alt: "Consulting team with expertise"
|
||||
},
|
||||
{
|
||||
type: "text", content:
|
||||
"Our founder brings 6+ years of expertise in cybersecurity and enterprise technology. This technical foundation enables us to understand complex B2B products and build sales processes that actually work. We speak both the language of technology and sales—a rare combination that drives results."},
|
||||
"Our founder brings 6+ years of hands-on experience in cybersecurity and enterprise technology. This technical expertise means we understand complex B2B products at a deep level. We don't just generate leads—we understand your customers' pain points, technical requirements, and buying criteria."
|
||||
},
|
||||
{
|
||||
type: "text", content:
|
||||
"We don't just generate leads; we build sustainable sales systems. Your success is measured by predictable pipeline growth, not vanity metrics. Every strategy we implement is data-driven and designed to scale with your business."},
|
||||
"We have a proven track record with startups and high-growth companies. We understand the unique challenges of early-stage businesses: bootstrapped budgets, limited team capacity, and the need for rapid scaling. Our startup focus means we deliver pragmatic, results-driven solutions, not theoretical consulting."
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Learn More About Us", href: "/about" }]}
|
||||
useInvertedBackground={true}
|
||||
@@ -149,9 +182,10 @@ export default function HomePage() {
|
||||
<div id="home-social-proof" data-section="home-social-proof">
|
||||
<SocialProofOne
|
||||
names={[
|
||||
"TechStartup Inc", "SaaS Solutions Ltd", "CyberSecure Systems", "DataFlow Analytics", "CloudBase Enterprise", "InnovateTech Corp", "GrowthScale Partners", "Digital Ventures GmbH", "Revenue Rocket AI"]}
|
||||
title="Trusted by Growing Companies"
|
||||
description="We've helped startups and SMEs across SaaS, cybersecurity, and enterprise tech accelerate their B2B sales."
|
||||
"SaaS Startup", "Cybersecurity Firm", "Enterprise Tech", "DataFlow Analytics", "CloudBase Solutions", "InnovateTech Corp", "GrowthScale Partners", "Digital Ventures GmbH", "Revenue Rocket AI"
|
||||
]}
|
||||
title="Results and Use Cases"
|
||||
description="Real results from SaaS startups and cybersecurity companies—accelerated growth, qualified leads, and predictable pipeline."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
showCard={true}
|
||||
@@ -165,26 +199,26 @@ export default function HomePage() {
|
||||
<TestimonialCardSix
|
||||
testimonials={[
|
||||
{
|
||||
id: "testimonial-1", name: "Sarah Chen", handle: "Founder, DataFlow Analytics", testimonial:
|
||||
"Küffer Consulting transformed our sales process. Within 4 months, we increased qualified leads by 3x and closed our largest deal ever. Their understanding of enterprise tech sales is exceptional.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gu3nme", imageAlt: "Sarah Chen"},
|
||||
id: "testimonial-1", name: "Sarah Chen", handle: "Founder, SaaS Startup", testimonial:
|
||||
"Küffer helped us build a scalable lead generation system. Within 3 months, we increased qualified leads by 3x and closed our largest deal ever. Their technical expertise in understanding our product was exceptional.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop&_wi=1", imageAlt: "Sarah Chen"},
|
||||
{
|
||||
id: "testimonial-2", name: "Marcus Reeves", handle: "VP Sales, CyberSecure Systems", testimonial:
|
||||
"We were struggling to scale without hiring an entire sales team. Küffer built us a playbook that works. Their technology expertise meant they understood our product better than most consultants.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=l0z12k", imageAlt: "Marcus Reeves"},
|
||||
id: "testimonial-2", name: "Marcus Reeves", handle: "VP Sales, Cybersecurity Company", testimonial:
|
||||
"We were struggling to scale without hiring an entire sales team. Küffer built us a playbook that works. Their deep understanding of cybersecurity helped them target the right buyers.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&_wi=1", imageAlt: "Marcus Reeves"},
|
||||
{
|
||||
id: "testimonial-3", name: "Elena Rodriguez", handle: "CEO, CloudBase Enterprise", testimonial:
|
||||
"The ROI was clear from month one. Quality leads, structured process, and expert guidance. They didn't just help us grow sales—they helped us build a scalable system.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=koccta", imageAlt: "Elena Rodriguez"},
|
||||
id: "testimonial-3", name: "Elena Rodriguez", handle: "CEO, Enterprise Tech", testimonial:
|
||||
"The ROI was clear from month one. Quality leads, structured process, and expert guidance. They built us a scalable system that continues to deliver.", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop", imageAlt: "Elena Rodriguez"},
|
||||
{
|
||||
id: "testimonial-4", name: "James Liu", handle: "Founder, InnovateTech Corp", testimonial:
|
||||
"Finally, someone who understands both technology and sales. Küffer's strategy doubled our pipeline in the first quarter. Best investment we made in our growth.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=7xw5y5", imageAlt: "James Liu"},
|
||||
"Finally, someone who understands both technology and sales. Küffer's strategy doubled our pipeline in the first quarter. Best investment we made in our growth.", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop", imageAlt: "James Liu"},
|
||||
{
|
||||
id: "testimonial-5", name: "Anna Bergström", handle: "Sales Director, GrowthScale Partners", testimonial:
|
||||
"Their approach is refreshingly practical. No fluff, just data-driven strategies that move the needle. Our close rate improved significantly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0kxtce", imageAlt: "Anna Bergström"},
|
||||
"Their approach is refreshingly practical. No fluff, just data-driven strategies that move the needle. Our close rate improved significantly.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&_wi=2", imageAlt: "Anna Bergström"},
|
||||
{
|
||||
id: "testimonial-6", name: "David Patel", handle: "COO, Revenue Rocket AI", testimonial:
|
||||
"Küffer didn't just generate leads—they implemented a complete sales system. We now have predictable pipeline growth. They're true partners in our success.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a8pk8t", imageAlt: "David Patel"},
|
||||
"Küffer didn't just generate leads—they implemented a complete sales system. We now have predictable pipeline growth. True partners in our success.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop&_wi=2", imageAlt: "David Patel"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Proven results from startups and SMEs across multiple industries."
|
||||
description="Proven results from SaaS startups and cybersecurity companies."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
@@ -194,15 +228,47 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home-process" data-section="home-process">
|
||||
<TimelineProcessFlow
|
||||
title="Our Process"
|
||||
description="From strategy to scale—four proven steps to build your predictable B2B sales pipeline."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
items={[
|
||||
{
|
||||
id: "step-1", content: <div><h3 className="text-xl font-bold mb-2">Strategy & Discovery</h3><p className="text-gray-600">We analyze your business, target market, competitive positioning, and ideal customer profile. Understanding your unique value proposition ensures we target the right buyers.</p></div>,
|
||||
media: <div className="w-full h-48 bg-gradient-to-br from-blue-100 to-blue-50 rounded-lg flex items-center justify-center"><span className="text-4xl font-bold text-blue-300">1</span></div>,
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
id: "step-2", content: <div><h3 className="text-xl font-bold mb-2">Lead Generation & Qualification</h3><p className="text-gray-600">We identify and reach out to qualified prospects matching your ICP. Every lead is vetted and qualified before delivery to ensure genuine sales potential.</p></div>,
|
||||
media: <div className="w-full h-48 bg-gradient-to-br from-green-100 to-green-50 rounded-lg flex items-center justify-center"><span className="text-4xl font-bold text-green-300">2</span></div>,
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
id: "step-3", content: <div><h3 className="text-xl font-bold mb-2">Sales Execution & Pipeline Management</h3><p className="text-gray-600">We manage relationships, conduct demonstrations, handle negotiations, and move prospects through your sales funnel. You receive regular updates on pipeline health and opportunity status.</p></div>,
|
||||
media: <div className="w-full h-48 bg-gradient-to-br from-purple-100 to-purple-50 rounded-lg flex items-center justify-center"><span className="text-4xl font-bold text-purple-300">3</span></div>,
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
id: "step-4", content: <div><h3 className="text-xl font-bold mb-2">Scale & Optimize</h3><p className="text-gray-600">We analyze results, identify what's working, and scale successful processes. Continuous optimization ensures your pipeline grows predictably while maintaining lead quality.</p></div>,
|
||||
media: <div className="w-full h-48 bg-gradient-to-br from-orange-100 to-orange-50 rounded-lg flex items-center justify-center"><span className="text-4xl font-bold text-orange-300">4</span></div>,
|
||||
reverse: true
|
||||
},
|
||||
]}
|
||||
containerClassName="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home-cta" data-section="home-cta">
|
||||
<ContactCenter
|
||||
tag="Ready to Grow?"
|
||||
title="Start Building Your Predictable Pipeline"
|
||||
description="Book a consultation with our team. We'll analyze your current sales process and show you how to scale without the overhead."
|
||||
tag="Ready to Accelerate Growth?"
|
||||
title="Book Your Free Strategy Call"
|
||||
description="Let's discuss your B2B sales challenges and explore how Küffer Consulting can accelerate your pipeline and revenue growth."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Book Consultation"
|
||||
buttonText="Book a Call"
|
||||
containerClassName="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"
|
||||
titleClassName="text-4xl sm:text-5xl font-extrabold mb-4"
|
||||
descriptionClassName="text-lg text-gray-700 max-w-2xl mb-8"
|
||||
|
||||
@@ -5,6 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
|
||||
@@ -18,8 +19,7 @@ const navItems = [
|
||||
|
||||
const navigationColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{ label: "Lead Generation", href: "/services" },
|
||||
{ label: "Sales Strategy", href: "/services" },
|
||||
{ label: "Sales Management", href: "/services" },
|
||||
@@ -27,24 +27,21 @@ const navigationColumns = [
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Insights", href: "/insights" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Email", href: "mailto:hello@kufferconsulting.com" },
|
||||
{ label: "Book Call", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
@@ -70,9 +67,7 @@ export default function ServicesPage() {
|
||||
navItems={navItems}
|
||||
brandName="Küffer Consulting"
|
||||
button={{
|
||||
text: "Book Consultation",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Book Consultation", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -93,33 +88,17 @@ export default function ServicesPage() {
|
||||
description="Each service is designed to work independently or as part of a complete sales transformation."
|
||||
features={[
|
||||
{
|
||||
title: "B2B Lead Generation",
|
||||
description:
|
||||
"Identification and delivery of qualified leads tailored to your ideal customer profile. Our methodology combines data research, industry intelligence, and targeting precision to ensure every lead has genuine potential. We don't just volume—we deliver quality.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=msc6kz&_wi=2",
|
||||
imageAlt: "Lead generation",
|
||||
},
|
||||
title: "B2B Lead Generation", description:
|
||||
"Identification and delivery of qualified leads tailored to your ideal customer profile. Our methodology combines data research, industry intelligence, and targeting precision to ensure every lead has genuine potential. We don't just volume—we deliver quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=msc6kz&_wi=2", imageAlt: "Lead generation"},
|
||||
{
|
||||
title: "Sales Strategy Consulting",
|
||||
description:
|
||||
"Develop scalable, data-driven sales processes customized to your business model. We analyze your current state, define your ideal sales system, and create a roadmap for sustainable growth. From positioning to pricing strategy, we cover it all.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n2vf8c&_wi=2",
|
||||
imageAlt: "Strategy development",
|
||||
},
|
||||
title: "Sales Strategy Consulting", description:
|
||||
"Develop scalable, data-driven sales processes customized to your business model. We analyze your current state, define your ideal sales system, and create a roadmap for sustainable growth. From positioning to pricing strategy, we cover it all.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n2vf8c&_wi=2", imageAlt: "Strategy development"},
|
||||
{
|
||||
title: "Full-Cycle Sales Management",
|
||||
description:
|
||||
"Complete management of your entire sales funnel from prospecting to closing. Our team handles prospecting, qualification, demonstration, negotiation, and close. You get predictable pipeline growth without the overhead of building an internal team.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d1qn43&_wi=2",
|
||||
imageAlt: "Sales management",
|
||||
},
|
||||
title: "Full-Cycle Sales Management", description:
|
||||
"Complete management of your entire sales funnel from prospecting to closing. Our team handles prospecting, qualification, demonstration, negotiation, and close. You get predictable pipeline growth without the overhead of building an internal team.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d1qn43&_wi=2", imageAlt: "Sales management"},
|
||||
{
|
||||
title: "Sales Technology & Automation",
|
||||
description:
|
||||
"Implementation and optimization of modern sales tools and automation systems. We integrate CRM platforms, automation workflows, and analytics dashboards that streamline your process and provide real-time visibility into pipeline health.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=fh389v&_wi=2",
|
||||
imageAlt: "Technology integration",
|
||||
},
|
||||
title: "Sales Technology & Automation", description:
|
||||
"Implementation and optimization of modern sales tools and automation systems. We integrate CRM platforms, automation workflows, and analytics dashboards that streamline your process and provide real-time visibility into pipeline health.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=fh389v&_wi=2", imageAlt: "Technology integration"},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
@@ -129,6 +108,39 @@ export default function ServicesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-testimonials" data-section="services-testimonials">
|
||||
<TestimonialCardSix
|
||||
testimonials={[
|
||||
{
|
||||
id: "testimonial-1", name: "Sarah Chen", handle: "@sarahchen", testimonial:
|
||||
"Küffer helped us build a scalable lead generation system. Within 3 months, we increased qualified leads by 3x and closed our largest deal ever. Their technical expertise in understanding our product was exceptional.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop&_wi=1", imageAlt: "Sarah Chen"},
|
||||
{
|
||||
id: "testimonial-2", name: "Marcus Reeves", handle: "@mreeves", testimonial:
|
||||
"We were struggling to scale without hiring an entire sales team. Küffer built us a playbook that works. Their deep understanding of cybersecurity helped them target the right buyers.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&_wi=1", imageAlt: "Marcus Reeves"},
|
||||
{
|
||||
id: "testimonial-3", name: "Elena Rodriguez", handle: "@erodriguez", testimonial:
|
||||
"The ROI was clear from month one. Quality leads, structured process, and expert guidance. They built us a scalable system that continues to deliver.", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop", imageAlt: "Elena Rodriguez"},
|
||||
{
|
||||
id: "testimonial-4", name: "James Liu", handle: "@jliu", testimonial:
|
||||
"Finally, someone who understands both technology and sales. Küffer's strategy doubled our pipeline in the first quarter. Best investment we made in our growth.", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop", imageAlt: "James Liu"},
|
||||
{
|
||||
id: "testimonial-5", name: "Anna Bergström", handle: "@abergstrom", testimonial:
|
||||
"Their approach is refreshingly practical. No fluff, just data-driven strategies that move the needle. Our close rate improved significantly.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&_wi=2", imageAlt: "Anna Bergström"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="What Our Clients Say"
|
||||
titleSegments={[]}
|
||||
description="Real results from B2B companies that have transformed their sales."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="Testimonials"
|
||||
tagAnimation="slide-up"
|
||||
containerClassName="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"
|
||||
textBoxTitleClassName="text-4xl sm:text-5xl font-extrabold mb-4"
|
||||
textBoxDescriptionClassName="text-lg text-gray-600 max-w-2xl mb-12"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-cta" data-section="services-cta">
|
||||
<ContactCenter
|
||||
tag="Get Started"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user