replace index page

This commit is contained in:
Julian Tölle 2021-04-24 00:06:55 +02:00
parent 741f984360
commit ae6d64acf7
2 changed files with 5 additions and 49 deletions

3
components/Character.tsx Normal file
View file

@ -0,0 +1,3 @@
export const Character = () => {
return <section></section>;
};

View file

@ -1,54 +1,7 @@
export default function Home() { export default function Home() {
return ( return (
<div className="flex flex-col items-center justify-center min-h-screen py-2"> <div className="flex flex-col items-center justify-center py-2">
<header></header> <main className="flex flex-col items-center justify-center flex-1 px-20 text-center"></main>
<main className="flex flex-col items-center justify-center flex-1 px-20 text-center">
<h1 className="text-6xl font-bold">
Welcome to{" "}
<a href="https://nextjs.org" className="text-blue-600">
Next.js!
</a>
</h1>
<p>
Get started by editing <code>pages/index.js</code>
</p>
<div>
<a href="https://nextjs.org/docs">
<h3>Documentation &rarr;</h3>
<p>Find in-depth information about Next.js features and API.</p>
</a>
<a href="https://nextjs.org/learn">
<h3>Learn &rarr;</h3>
<p>Learn about Next.js in an interactive course with quizzes!</p>
</a>
<a href="https://github.com/vercel/next.js/tree/master/examples">
<h3>Examples &rarr;</h3>
<p>Discover and deploy boilerplate example Next.js projects.</p>
</a>
<a href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app">
<h3>Deploy &rarr;</h3>
<p>
Instantly deploy your Next.js site to a public URL with Vercel.
</p>
</a>
</div>
</main>
<footer>
<a
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Powered by <img src="/vercel.svg" alt="Vercel Logo" />
</a>
</footer>
</div> </div>
); );
} }