Update src/app/ai-sales-director/page.tsx

This commit is contained in:
2026-05-09 14:32:30 +00:00
parent a2c709d0e5
commit bc3766094f

View File

@@ -2,38 +2,45 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import { FeatureBento } from "@/components/sections/feature/FeatureBento";
import FooterBase from "@/components/sections/footer/FooterBase";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import ReactLenis from "lenis/react";
export default function AISalesDirectorPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "AI Manager", id: "/ai-manager" },
{ name: "AI Sales Director", id: "/ai-sales-director" },
]}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "AI Manager", id: "/ai-manager" },
{ name: "AI Sales Director", id: "/ai-sales-director" },
]}
/>
</div>
<div className="pt-32 pb-16 px-6 max-w-5xl mx-auto">
<h1 className="text-5xl font-bold mb-8">AI Sales Director</h1>
<p className="text-xl mb-12">Supercharge your revenue with our AI Sales Director, a tool designed to identify high-potential leads, automate follow-ups, and optimize your sales pipeline.</p>
<h2 className="text-3xl font-semibold mb-6">Benefits</h2>
<ul className="list-disc pl-6 space-y-4 mb-12">
<li>Increase conversion rates through personalized outreach</li>
<li>Reduce sales cycle length with automated nurturing</li>
<li>Real-time pipeline visibility and forecasting</li>
<li>AI-driven sentiment analysis on customer interactions</li>
</ul>
<h2 className="text-3xl font-semibold mb-6">Use Cases</h2>
<p className="mb-12">Ideal for scaling teams needing better lead qualification or enterprises looking to optimize high-volume outbound sales.</p>
</div>
<FooterBase logoText="Webild" />
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Webild"
columns={[{ items: [{ label: "Home", href: "/" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);