diff --git a/components/Footer.tsx b/components/Footer.tsx index c38abda..5cf157a 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -18,21 +18,28 @@ import React from "react"; import Link from "next/link"; +import { Montserrat, Inter } from "@next/font/google"; + +const montserrat = Montserrat({ + weight: "600", + style: "normal", + subsets: ["latin"], +}); // Title Font +const inter = Inter({ weight: "400", style: "normal", subsets: ["latin"] }); // Body Font export default function Footer() { return ( <>