B2B-29: Create register-company form
This commit is contained in:
21
app/(public)/register-company/success/page.tsx
Normal file
21
app/(public)/register-company/success/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import { MedReportTitle } from "@/components/MedReportTitle";
|
||||
import Image from "next/image";
|
||||
import sucess from "@/assets/success.png";
|
||||
import Link from "next/link";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
export default function CompanyRegistrationSuccess() {
|
||||
return (
|
||||
<div className="pt-2 px-16 pb-12 border rounded-3xl border-border">
|
||||
<MedReportTitle />
|
||||
<div className="flex flex-col items-center px-4">
|
||||
<Image src={sucess} alt="Success" className="pt-6 pb-8" />
|
||||
<h1 className="pb-2">Päring edukalt saadetud!</h1>
|
||||
<p>Saadame teile esimesel võimalusel vastuse</p>
|
||||
</div>
|
||||
<Button className="w-full mt-8">
|
||||
<Link href="/">Tagasi kodulehele</Link>
|
||||
</Button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user