12 lines
615 B
TypeScript
12 lines
615 B
TypeScript
"use client"
|
|
|
|
export default function Submitted() {
|
|
return (
|
|
<div className="flex flex-col items-center min-h-screen gap-6 mt-8 mb-8">
|
|
<h1 className="text-3xl mb-3">Application Submitted</h1>
|
|
<p className="text-lg">Thank you for applying to The Last Tech Job. We have received your application and will be reviewing it shortly.</p>
|
|
<p className="text-lg">We may get back to you in 14-18 months.</p>
|
|
<p className="text-md text-gray-700">In the meantime, we would suggest checking out our other job opportunities, however they have all been taken by AI.</p>
|
|
</div>
|
|
);
|
|
}; |