Fix: Fix build errors (#6)
Co-authored-by: Helena <helena@Helenas-MacBook-Pro.local>
This commit is contained in:
@@ -5,7 +5,6 @@ import React from "react";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Label } from "@/components/ui/label";
|
||||
import Image from "next/image";
|
||||
import medReportBigLogo from "@/assets/medReportBigLogo.png";
|
||||
import { SubmitButton } from "@/components/submit-button";
|
||||
import { yupResolver } from "@hookform/resolvers/yup";
|
||||
import { useForm } from "react-hook-form";
|
||||
@@ -84,7 +83,7 @@ export default function RegisterCompany() {
|
||||
</form>
|
||||
</div>
|
||||
<div className="w-1/2">
|
||||
<Image src={medReportBigLogo} alt="MedReport" priority />
|
||||
<Image src='/assets/med-report-logo-big.png' alt="MedReport" width={494} height={674} priority />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
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";
|
||||
|
||||
@@ -9,7 +8,13 @@ export default function CompanyRegistrationSuccess() {
|
||||
<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" />
|
||||
<Image
|
||||
src="/assets/success.png"
|
||||
alt="Success"
|
||||
className="pt-6 pb-8"
|
||||
width={326}
|
||||
height={195}
|
||||
/>
|
||||
<h1 className="pb-2">Päring edukalt saadetud!</h1>
|
||||
<p>Saadame teile esimesel võimalusel vastuse</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user