From 9fd9e09fd5ace1979d4f6abe7d0507bf8dad1f81 Mon Sep 17 00:00:00 2001 From: Renato Date: Wed, 5 Aug 2026 07:24:58 +0800 Subject: [PATCH] fix: footer movil con botones de comunidad visibles (Discord/Patreon/X/RSS con iconos) --- src/app/(public)/layout.tsx | 64 ++++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 30 deletions(-) diff --git a/src/app/(public)/layout.tsx b/src/app/(public)/layout.tsx index eee014d..033ab03 100644 --- a/src/app/(public)/layout.tsx +++ b/src/app/(public)/layout.tsx @@ -1,5 +1,5 @@ import Link from "next/link" -import { Image, Search, Rss } from "lucide-react" +import { Image, Search, Rss, X, MessageCircle, Heart } from "lucide-react" import { SITE_NAME, SITE_TAGLINE, SITE_LINKS } from "@/lib/site" import { AgeGate } from "@/components/age-gate" import { FanSubSidebar } from "@/components/fansub-sidebar" @@ -39,56 +39,60 @@ export default function PublicLayout({ children }: { children: React.ReactNode } -