From ae6d64acf704ee4f5d3c616d733e853207d1de94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sat, 24 Apr 2021 00:06:55 +0200 Subject: [PATCH] replace index page --- components/Character.tsx | 3 +++ pages/index.tsx | 51 ++-------------------------------------- 2 files changed, 5 insertions(+), 49 deletions(-) create mode 100644 components/Character.tsx diff --git a/components/Character.tsx b/components/Character.tsx new file mode 100644 index 0000000..e6c5c08 --- /dev/null +++ b/components/Character.tsx @@ -0,0 +1,3 @@ +export const Character = () => { + return
; +}; diff --git a/pages/index.tsx b/pages/index.tsx index f611565..437b9b3 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,54 +1,7 @@ export default function Home() { return ( -
-
- -
-

- Welcome to{" "} - - Next.js! - -

- -

- Get started by editing pages/index.js -

- -
- -

Documentation →

-

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

-
- - -

Learn →

-

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

-
- - -

Examples →

-

Discover and deploy boilerplate example Next.js projects.

-
- - -

Deploy →

-

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

-
-
-
- - +
+
); }