geothermie-atlas/app/daten/page.tsx

14 lines
305 B
TypeScript
Raw Permalink Normal View History

2023-10-19 09:07:33 +00:00
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>
);
}