page.js 633 B

123456789101112131415161718192021222324252627
  1. import Image from "next/image";
  2. import Link from "next/link";
  3. function LogoutPage() {
  4. return (
  5. <div className="w-3/4 mx-auto mt-28 flex flex-col items-center">
  6. <h1 className="text-3xl font-poppins font-semibold">Bis Bald!</h1>
  7. <p className="text-xl mt-2">
  8. Wenn du Fragen oder Anregungen hast, wende dich an{" "}
  9. <span>
  10. <Link href="mailto:cayan@attus.de" className="text-red-600 font-bold">
  11. cayan@attus.de
  12. </Link>
  13. </span>
  14. .
  15. </p>
  16. <Image
  17. src="/images/LogoHome.png"
  18. alt="Logo von Reifen Helm gross"
  19. width={500}
  20. height={500}
  21. />
  22. </div>
  23. );
  24. }
  25. export default LogoutPage;