[offers][feat] add header for pages (#526)
* [offers][feat] add header for pages * [offers][fix] fix pronoun for toast * [offers][feat] fix index page descriptionpull/527/head
parent
a79e132161
commit
d1956ca12a
@ -1,5 +1,14 @@
|
|||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
import OffersSubmissionForm from '~/components/offers/offersSubmission/OffersSubmissionForm';
|
import OffersSubmissionForm from '~/components/offers/offersSubmission/OffersSubmissionForm';
|
||||||
|
|
||||||
export default function OffersSubmissionPage() {
|
export default function OffersSubmissionPage() {
|
||||||
return <OffersSubmissionForm />;
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>Analyze your offers</title>
|
||||||
|
</Head>
|
||||||
|
<OffersSubmissionForm />
|
||||||
|
</>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,14 @@
|
|||||||
|
import Head from 'next/head';
|
||||||
|
|
||||||
import OffersSubmissionForm from '~/components/offers/offersSubmission/OffersSubmissionForm';
|
import OffersSubmissionForm from '~/components/offers/offersSubmission/OffersSubmissionForm';
|
||||||
|
|
||||||
export default function OffersSubmissionPage() {
|
export default function OffersSubmissionPage() {
|
||||||
return <OffersSubmissionForm />;
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>Analyze your offers</title>
|
||||||
|
</Head>
|
||||||
|
<OffersSubmissionForm />
|
||||||
|
</>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue