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}