mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 21:11:01 +00:00
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center min-h-screen py-2">
|
|
<header></header>
|
|
|
|
<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 →</h3>
|
|
<p>Find in-depth information about Next.js features and API.</p>
|
|
</a>
|
|
|
|
<a href="https://nextjs.org/learn">
|
|
<h3>Learn →</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 →</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 →</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>
|
|
);
|
|
}
|