"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const blocks = [ { name: "About", href: "/docs/blocks/about" }, { name: "Blog", href: "/docs/blocks/blog" }, { name: "Call to Action", href: "/docs/blocks/call-to-action" }, { name: "Clients", href: "/docs/blocks/clients" }, { name: "Contact", href: "/docs/blocks/contact" }, { name: "Facts", href: "/docs/blocks/facts" }, { name: "FAQ", href: "/docs/blocks/faq" }, { name: "Features", href: "/docs/blocks/features" }, { name: "Footer", href: "/docs/blocks/footer" }, { name: "Hero", href: "/docs/blocks/hero" }, { name: "Misc", href: "/docs/blocks/misc" }, { name: "Navbar", href: "/docs/blocks/navbar" }, { name: "Portfolio", href: "/docs/blocks/portfolio" }, { name: "Pricing", href: "/docs/blocks/pricing" }, { name: "Process", href: "/docs/blocks/process" }, { name: "Team", href: "/docs/blocks/team" }, { name: "Testimonials", href: "/docs/blocks/testimonials" }, ]; export default function BlockPageLinks() { const pathname = usePathname(); return (

Filter Blocks:

{/* /.container */}
); }