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. -

-
-
-
- - +
+
); }