From 7e510d7a58f00fda636a3bd02684705b4e0e4d06 Mon Sep 17 00:00:00 2001 From: Amandeep Chauhan Date: Sun, 1 Oct 2023 16:22:44 +0530 Subject: [PATCH] fix "Footer" links properly not visible on hover --- components/layout/site-footer.tsx | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/components/layout/site-footer.tsx b/components/layout/site-footer.tsx index e663d31..3ad95d0 100644 --- a/components/layout/site-footer.tsx +++ b/components/layout/site-footer.tsx @@ -1,4 +1,5 @@ import React from "react"; +import { cn } from "@/lib/utils"; import { Button } from "../ui/button"; type Props = {}; @@ -8,12 +9,19 @@ export default function SiteFooter({}: Props) {