From 5c8612e32703f6dd10c7eaa30eb774cbd2e559c3 Mon Sep 17 00:00:00 2001 From: Felipe Carvalho Date: Thu, 16 Apr 2026 06:57:31 +0200 Subject: [PATCH] fix: add missing site-footer component and remove brand-icons dependency Co-Authored-By: Claude Sonnet 4.6 --- components/icons.tsx | 4 ---- components/site-footer.tsx | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 components/site-footer.tsx diff --git a/components/icons.tsx b/components/icons.tsx index 3d378b1..a79672c 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -26,8 +26,6 @@ import { type LucideIcon, } from "lucide-react" -import { Apple, Google } from "@/components/brand-icons" - export type Icon = LucideIcon export const Icons = { @@ -55,6 +53,4 @@ export const Icons = { gitHub: Github, twitter: Twitter, check: Check, - google: Google, - apple: Apple, } diff --git a/components/site-footer.tsx b/components/site-footer.tsx new file mode 100644 index 0000000..d601cdc --- /dev/null +++ b/components/site-footer.tsx @@ -0,0 +1,34 @@ +import { appConfig } from "@/lib/config" + +export function SiteFooter() { + return ( + + ) +}