Files
8955f355-e305-4abb-ad9b-b6d…/src/app/tools/page.tsx
2026-03-10 16:12:42 +00:00

125 lines
5.3 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import {
Sparkles,
Zap,
Shield,
Users,
Heart,
MessageSquare,
Share2,
Star,
} from "lucide-react";
export default function ToolsPage() {
const navItems = [
{ name: "Explore", id: "tools" },
{ name: "Categories", id: "categories" },
{ name: "How It Works", id: "features" },
{ name: "Suggest Tool", id: "contact" },
{ name: "Blog", id: "https://blog.example.com" },
];
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleApple brandName="FreeAI Hub" navItems={navItems} />
</div>
{/* Hero Section - Tools Page */}
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText="Browse All Tools"
description="Explore our complete collection of 500+ verified free AI tools across every category. Carefully curated and automatically checked daily to ensure they remain 100% free."
background={{ variant: "plain" }}
buttons={[
{ text: "View Categories", href: "#categories" },
{ text: "Back to Home", href: "/" },
]}
layoutOrder="default"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al7jyxM8sHalQ2EcbERIFxTIFv/professional-coding-interface-showing-mu-1773157943711-7726a37d.jpg"
imageAlt="Tool Categories Overview"
mediaAnimation="slide-up"
frameStyle="browser"
/>
</div>
{/* Featured Tools Categories */}
<div id="categories" data-section="categories">
<FeatureBento
title="Explore by Category"
description="Find the perfect free AI tool for your needs. Browse through our most popular categories with hand-picked selections."
features={[
{
title: "Image Generation", description: "Create stunning visuals with free AI art generators", bentoComponent: "animated-bar-chart"},
{
title: "Writing & Content", description: "Generate blog posts, emails, and social media content", bentoComponent: "icon-info-cards", items: [
{ icon: Sparkles, label: "Blog Posts", value: "20+ Tools" },
{ icon: Zap, label: "Email Copy", value: "15+ Tools" },
{ icon: Shield, label: "SEO Tools", value: "12+ Tools" },
],
},
{
title: "Coding Assistants", description: "Free AI coding helpers for developers of all levels", bentoComponent: "orbiting-icons", centerIcon: Users,
items: [
{ icon: Heart, ring: 1 },
{ icon: MessageSquare, ring: 1 },
{ icon: Share2, ring: 2 },
{ icon: Star, ring: 2 },
],
},
{
title: "Video & Audio", description: "Edit videos, create voiceovers, and generate music", bentoComponent: "globe"},
{
title: "Chatbots & Assistants", description: "Conversational AI tools for productivity and learning", bentoComponent: "marquee", centerIcon: MessageSquare,
variant: "text", texts: ["ChatGPT Free", "Claude", "Gemini", "Perplexity", "Others"],
},
{
title: "Design Tools", description: "Create graphics, logos, and mockups without paying", bentoComponent: "3d-stack-cards", items: [
{
icon: Sparkles,
title: "Logo Design", subtitle: "AI-powered creators", detail: "8+ free tools"},
{
icon: Zap,
title: "Graphics", subtitle: "Design templates", detail: "12+ platforms"},
{
icon: Shield,
title: "Mockups", subtitle: "Product mockups", detail: "5+ tools"},
],
},
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="FreeAI Hub"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Terms of Service", href: "/terms" }}
/>
</div>
</ThemeProvider>
);
}