import Link from "next/link"; import { buttonVariants } from "./ui/button"; import docuConfig from "@/docu.json"; // Import JSON export function Footer() { const { footer } = docuConfig; // Extract footer from JSON return ( ); } export function FooterButtons() { const { footer } = docuConfig; // Extract footer from JSON return ( <> {footer.buttons.map((button, index) => { const Icon = require("lucide-react")[button.iconName]; // Dynamically load icon return ( {button.text} ); })} > ); }