import { Medal } from "lucide-react"; import localFont from "next/font/local"; import { Poppins } from "next/font/google"; import Link from "next/link"; import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; import Image from "next/image"; const headingFont = localFont({ src: "../../public/fonts/font.woff2" }); const textFont = Poppins({ subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const MarketingPage = () => { return (