import { _generateMetadata, getTranslate } from "app/_utils"; import { Inter } from "next/font/google"; import localFont from "next/font/local"; import { type IconName, IconSprites } from "@calcom/ui"; import { lucideIconList } from "../../../../packages/ui/components/icon/icon-list.mjs"; import { IconGrid } from "./IconGrid"; const interFont = Inter({ subsets: ["latin"], variable: "--font-inter", preload: true, display: "swap" }); const calFont = localFont({ src: "../../fonts/CalSans-SemiBold.woff2", variable: "--font-cal", preload: true, display: "swap", weight: "600", }); export const generateMetadata = async () => { return await _generateMetadata( (t) => t("icon_showcase"), () => "" ); }; export default async function IconsPage() { const icons = Array.from(lucideIconList).sort() as IconName[]; const t = await getTranslate(); return (