import { Globe, Search, Shield, Activity } from "lucide-react"; import { Card, CardHeader, CardTitle, CardDescription, } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { ThemeToggle } from "@/components/theme-toggle"; import { DomainSearchForm } from "@/components/domain-search-form"; const features = [ { icon: Search, title: "DNS Records", description: "Query A, AAAA, MX, TXT, NS, CNAME, SOA, CAA, and SRV records for any domain.", }, { icon: Shield, title: "WHOIS Lookup", description: "View registrar, expiration dates, nameservers, and registration details.", }, { icon: Activity, title: "Domain Monitoring", description: "Track DNS changes over time, get alerts when records change, and monitor availability.", }, ]; export default function Home() { return (
{/* Header */}
VectorDNS
{/* Hero */}
Free DNS Toolkit

DNS Lookup, WHOIS &{" "} Domain Monitoring

Search nameservers, check domain availability, and track DNS record changes — all in one place.

{/* Features */}
{features.map((feature) => ( {feature.title} {feature.description} ))}
{/* Footer */}
); }