| 123456789101112131415161718192021222324252627 |
- import Image from "next/image";
- import Link from "next/link";
- function LogoutPage() {
- return (
- <div className="w-3/4 mx-auto mt-28 flex flex-col items-center">
- <h1 className="text-3xl font-poppins font-semibold">Bis Bald!</h1>
- <p className="text-xl mt-2">
- Wenn du Fragen oder Anregungen hast, wende dich an{" "}
- <span>
- <Link href="mailto:cayan@attus.de" className="text-red-600 font-bold">
- cayan@attus.de
- </Link>
- </span>
- .
- </p>
- <Image
- src="/images/LogoHome.png"
- alt="Logo von Reifen Helm gross"
- width={500}
- height={500}
- />
- </div>
- );
- }
- export default LogoutPage;
|