initial commit

This commit is contained in:
undefined
2025-01-24 20:05:48 +01:00
commit db55c10f43
484 changed files with 118165 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import React, { useEffect } from "react";
export default function CheckDeleteEmailPage() {
useEffect(() => {
localStorage.clear();
}, [])
return (
<div className="flex items-center justify-center min-h-screen">
<h1 className="text-4xl">You have requested to delete your account. Please check your email to confirm this operation</h1>
</div>
);
}