Account
{section.title}
{section.description}
import Link from "next/link"; import { User, Key, Bookmark, Bell, BarChart3, ArrowLeft, ChevronRight, } from "lucide-react"; import { SiteHeader } from "@/components/site-header"; const sections = [ { icon: User, title: "Profile", description: "Manage your display name, email, avatar, and other information.", href: "/account/profile", }, { icon: Key, title: "API Keys", description: "Create and manage keys for API based DNS lookups.", href: "/account/api-keys", }, { icon: Bookmark, title: "Saved Domains", description: "View and manage domains you're monitoring.", href: "/account/saved-domains", }, { icon: Bell, title: "Notifications", description: "Configure alerts for DNS changes", href: "/account/notifications", }, { icon: BarChart3, title: "Usage", description: "View your query history, rate limits, and usage stats.", href: "/account/usage", }, ]; export default function AccountPage() { return (
{section.title}
{section.description}