Skip to content

Commit

Permalink
the 'content' job proof-reading fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stebunovd committed Sep 3, 2024
1 parent 99c374b commit 037c247
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions src/Jobs.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Jobs. Steve Jobs.
const Jobs = {
marketing: {
content: {
name: 'Content',
title: 'Контент-менеджер, продюссер',
title: 'Контент-менеджер, продюсер',
description: 'Content, Product Marketing, Digital, SEO, SMM',
url: '/content/',
active: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ MarketingFormComponent.propTypes = {
breakpoints: PropTypes.object.isRequired,
};

export default function MarketingForm({ job, experienceTypes }) {
export default function ContentForm({ job, experienceTypes }) {
const form = useForm({
resolver: yupResolver(getFormSchema(experienceTypes)),
});
Expand All @@ -126,7 +126,7 @@ export default function MarketingForm({ job, experienceTypes }) {
);
}

MarketingForm.propTypes = {
ContentForm.propTypes = {
job: PropTypes.shape({
name: PropTypes.string.isRequired,
title: PropTypes.string.isRequired,
Expand Down
10 changes: 5 additions & 5 deletions src/pages/content/form.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import Jobs from '@/Jobs';
import MarketingForm from '@/components/MarketingForm';
import ContentForm from '@/components/ContentForm';
import Layout from '@/components/layout/Layout';

const backLink = { url: '/', text: 'Все вакансии' };
Expand All @@ -10,12 +10,12 @@ export default function HeadOfMarketingForm() {
return (
<Layout
pageTitle="Отклик на вакансию"
metaTitle={`Отклик на вакансию - ${Jobs.marketing.title}`}
metaDescription={Jobs.marketing.description}
metaTitle={`Отклик на вакансию - ${Jobs.content.title}`}
metaDescription={Jobs.content.description}
backLink={backLink}
>
<MarketingForm
job={Jobs.marketing}
<ContentForm
job={Jobs.content}
experienceTypes={{}}
/>
</Layout>
Expand Down
14 changes: 7 additions & 7 deletions src/pages/content/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import Layout from '@/components/layout/Layout';

const backLink = { url: '/', text: 'Все вакансии' };

export default function marketingJob() {
export default function contentJob() {
return (
<Layout
pageTitle={Jobs.marketing.title}
subTitle={Jobs.marketing.subTitle}
metaDescription={Jobs.marketing.description}
pageTitle={Jobs.content.title}
subTitle={Jobs.content.subTitle}
metaDescription={Jobs.content.description}
backLink={backLink}
>
<JobPage job={Jobs.marketing}>
<JobPage job={Jobs.content}>
<JobTextBlock title="Кого мы ищем">
<p>
Нам нужен человек который помог бы нам создавать и распространять
Expand All @@ -33,7 +33,7 @@ export default function marketingJob() {
</ExternalLink>.
</p>
<p>
Мы ожидаем:
Мы ожидаем от вас:
</p>
<ul>
<li>опыт работы в этой сфере от 5 лет;</li>
Expand All @@ -42,7 +42,7 @@ export default function marketingJob() {
</li>
<li>
вы можете самостоятельно (без ChatGPT) написать интересную статью
по IT-тематике, или помочь отредактировать статью которую написал
по IT-тематике или помочь отредактировать статью которую написал
другой человек;
</li>
<li>
Expand Down

0 comments on commit 037c247

Please sign in to comment.