From dfd0d9e8fe1dc44d5cc9f50a88ed34eb7fc10370 Mon Sep 17 00:00:00 2001 From: Yuto Terada Date: Sun, 27 Oct 2024 14:33:31 +0900 Subject: [PATCH] =?UTF-8?q?Next.js=E3=81=AE=E3=83=86=E3=83=B3=E3=83=97?= =?UTF-8?q?=E3=83=AC=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- task_yell/src/app/layout.tsx | 3 +- task_yell/src/app/page.tsx | 99 +----------------------------------- 2 files changed, 2 insertions(+), 100 deletions(-) diff --git a/task_yell/src/app/layout.tsx b/task_yell/src/app/layout.tsx index a36cde0..7f53dc6 100644 --- a/task_yell/src/app/layout.tsx +++ b/task_yell/src/app/layout.tsx @@ -14,8 +14,7 @@ const geistMono = localFont({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Task Yell", }; export default function RootLayout({ diff --git a/task_yell/src/app/page.tsx b/task_yell/src/app/page.tsx index 1a0ff4b..7d36d4d 100644 --- a/task_yell/src/app/page.tsx +++ b/task_yell/src/app/page.tsx @@ -1,7 +1,6 @@ "use client"; import { auth } from "@/firebase/client-app"; -import Image from "next/image"; import { useRouter } from "next/navigation"; import { useEffect } from "react"; @@ -18,101 +17,5 @@ export default function Home() { }); }, [router]); - return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.tsx - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- -
- ); + return <>; }