14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function Daten() {
|
|
return (
|
|
<main className="w-full">
|
|
<div className="flex flex-col items-center pt-32">
|
|
<p>
|
|
Hier kommen die Links zu <Link href="https://www.tethys.at/">Tethys</Link>
|
|
</p>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|