import React, { useState } from 'react'; import { ChevronRight, Filter } from 'lucide-react'; export default function ToolsWebsite() { const [activeCategory, setActiveCategory] = useState('All'); const tools = [ { id: 1, title: "Link Generator", description: "Buat short url whatsapp dengan cepat", category: "Sosmed", icon: "💬" }, { id: 2, title: "Bulk Image Converter", description: "Konversi banyak gambar sekaligus dengan cepat", category: "Tools", icon: "🖼️" }, { id: 3, title: "Gradient Color", description: "Buat gradasi background ke css dengan mudah", category: "Tools", icon: "🎨" }, { id: 4, title: "YouTube Description", description: "Buat deskripsi SEO video Youtube dengan mudah", category: "SEO", icon: "🎬" }, { id: 5, title: "Keyword Generator", description: "Buat kata kunci turunan dengan mudah dan cepat", category: "SEO", icon: "🔍" }, { id: 6, title: "Artikel Generator", description: "Buat artikel SEO dengan mudah dan cepat", category: "SEO", icon: "📝" }, { id: 7, title: "Ad Copy Generator", description: "Buat ad copy Meta Ads dengan mudah", category: "Sosmed", icon: "📢" }, { id: 8, title: "Headline Generator", description: "Buat headline menarik untuk produk Anda!", category: "Sosmed", icon: "⚡" }, { id: 9, title: "Content Calendar", description: "Buat konten kalender dalam sekejap", category: "Tools", icon: "📅" }, { id: 10, title: "Idea Generator", description: "Buat ide konten TikTok dengan mudah!", category: "Sosmed", icon: "💡" }, { id: 11, title: "Content Generator", description: "Buat script konten TikTok dalam hitungan detik", category: "Sosmed", icon: "🎥" }, { id: 12, title: "Caption Generator", description: "Buat caption sosmed dengan cepat dan mudah", category: "Sosmed", icon: "✍️" } ]; const categories = ['All', 'Sosmed', 'SEO', 'Tools']; const filteredTools = activeCategory === 'All' ? tools : tools.filter(tool => tool.category === activeCategory); return (
{/* Header */}

Tools

Semua tools aplikasi website ini di buat hanya menggunakan AI.

{/* Categories Filter */}
{categories.map(category => ( ))}
{/* Tools Grid */}
{filteredTools.map(tool => (
{tool.icon}

{tool.title}

{tool.description}

{tool.category}
))}
{/* CTA Section */}

Bikin Aplikasi Web Cuma Pake AI 😍

Tanpa perlu jago coding. Pemula sekalipun bisa buat aplikasi atau tools website dengan AI ✨

{/* Footer */}
); }