From a743e0be9209e2aca2a02398e86a5dd76430045c Mon Sep 17 00:00:00 2001 From: sealday Date: Sat, 6 Apr 2024 01:43:25 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E6=95=B4=E4=BD=93?= =?UTF-8?q?=E7=9A=84=E5=A4=B4=E9=83=A8=E3=80=81=E5=B0=BE=E9=83=A8=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B3=A8=E5=86=8C=E7=99=BB=E5=BD=95=E7=9A=84?= =?UTF-8?q?=E6=8F=92=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/logo.tsx | 20 ++++++++++ app/layout.tsx | 84 ++++++++++++++--------------------------- app/page.tsx | 11 ++---- app/signin/page.tsx | 16 ++++---- app/signin/signin.svg | 1 + app/signup/page.tsx | 21 ++++++----- app/signup/signup.svg | 1 + 7 files changed, 75 insertions(+), 79 deletions(-) create mode 100644 app/components/logo.tsx create mode 100644 app/signin/signin.svg create mode 100644 app/signup/signup.svg diff --git a/app/components/logo.tsx b/app/components/logo.tsx new file mode 100644 index 0000000..fbed134 --- /dev/null +++ b/app/components/logo.tsx @@ -0,0 +1,20 @@ +export default function Logo() { + return ( + + + + ); +} diff --git a/app/layout.tsx b/app/layout.tsx index 985a4d6..49672e9 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import SignoutButton from "./components/signout-button"; +import Logo from "./components/logo"; const inter = Inter({ subsets: ["latin"] }); @@ -24,38 +25,27 @@ export default function RootLayout({ href="#" className="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0" > - - - + 音乐弹幕 -
{children}
+
{children}