switch to parcel building

This commit is contained in:
WillJeynes
2026-06-23 12:25:37 +01:00
parent 77c2c3acdf
commit 5bb94d4714
10 changed files with 2870 additions and 951 deletions
+12
View File
@@ -0,0 +1,12 @@
"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>
);
};