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 ( + + ) +}