From c962cf572fa6d5c6541ed3421b7bf879f5906dca Mon Sep 17 00:00:00 2001 From: Snowykami Date: Mon, 28 Jul 2025 11:44:50 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20=E6=B7=BB=E5=8A=A0Footer?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=B9=B6=E5=9C=A8RootLayout=E4=B8=AD?= =?UTF-8?q?=E5=BC=95=E5=85=A5=EF=BC=8C=E5=A2=9E=E5=BC=BA=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=BB=93=E6=9E=84=20style:=20=E6=9B=B4=E6=96=B0globals.css?= =?UTF-8?q?=EF=BC=8C=E8=B0=83=E6=95=B4sonner-toast=E8=83=8C=E6=99=AF?= =?UTF-8?q?=E9=A2=9C=E8=89=B2=20fix:=20=E4=BF=AE=E6=94=B9request.ts?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E6=97=A5=E5=BF=97=E7=BA=A7=E5=88=AB=E4=B8=BA?= =?UTF-8?q?debug=EF=BC=8C=E4=BC=98=E5=8C=96=E9=94=99=E8=AF=AF=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/app/(main)/layout.tsx | 2 ++ web/src/app/globals.css | 4 ++++ web/src/app/layout.tsx | 2 +- web/src/components/footer.tsx | 10 ++++++++++ web/src/i18n/request.ts | 2 +- 5 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 web/src/components/footer.tsx diff --git a/web/src/app/(main)/layout.tsx b/web/src/app/(main)/layout.tsx index ffb7cd9..91f16d8 100644 --- a/web/src/app/(main)/layout.tsx +++ b/web/src/app/(main)/layout.tsx @@ -4,6 +4,7 @@ import { motion } from 'framer-motion' import { usePathname } from 'next/navigation' import { Navbar } from '@/components/navbar' import { BackgroundProvider } from '@/contexts/background-context' +import Footer from '@/components/footer' export default function RootLayout({ children, @@ -31,6 +32,7 @@ export default function RootLayout({
{children}
+