From 45bcf4a2d45e1e32abd3467ebde1bd01e7fa76d0 Mon Sep 17 00:00:00 2001 From: hyeseon han Date: Tue, 5 Dec 2023 00:04:33 +0900 Subject: [PATCH] initial commit --- public/next.svg | 1 - public/vercel.svg | 1 - src/pages/index.tsx | 113 ++------------------------------------------ 3 files changed, 4 insertions(+), 111 deletions(-) delete mode 100644 public/next.svg delete mode 100644 public/vercel.svg diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/pages/index.tsx b/src/pages/index.tsx index be88f73..8557c56 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,118 +1,13 @@ -import Image from 'next/image' -import { Inter } from 'next/font/google' +import { Inter } from "next/font/google"; -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ["latin"] }); export default function Home() { return (
-
-

- Get started by editing  - src/pages/index.tsx -

-
- - By{' '} - Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

- Discover and deploy boilerplate example Next.js projects. -

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
+
- ) + ); }