Update src/app/page.tsx

This commit is contained in:
2026-03-10 17:16:13 +00:00
parent 758153ed8e
commit 4a2c425289

View File

@@ -25,6 +25,8 @@ import {
CheckCircle,
Tag as TagIcon,
Mail,
Zap as ZapIcon,
Rocket,
} from "lucide-react";
export default function HomePage() {
@@ -208,14 +210,16 @@ export default function HomePage() {
{/* CTA Section */}
<div id="cta" data-section="cta">
<ContactCTA
tag="Ready to Explore?"
title="Start Finding Free AI Tools Today"
description="Join thousands of creators and developers discovering powerful free AI tools. No credit card required. No hidden fees. Just pure AI capability."
tag="Get Started Free"
tagIcon={Rocket}
title="Unlock Access to 500+ Premium AI Tools at Zero Cost"
description="Stop paying for AI. Our verified directory gives you instant access to the world's best free AI tools. No credit card. No hidden fees. No paywalls. Join thousands of creators and developers already saving thousands per year."
buttons={[
{ text: "Browse All Tools", href: "/tools" },
{ text: "Suggest a Tool", href: "/suggest" },
{ text: "Start Exploring Now", href: "/tools" },
{ text: "Submit Your Tool", href: "/suggest" },
]}
background={{ variant: "plain" }}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
@@ -230,4 +234,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}