diff --git a/public/images/practical-part.png b/public/images/practical-part.png new file mode 100644 index 0000000..1607acd Binary files /dev/null and b/public/images/practical-part.png differ diff --git a/public/images/written-part.png b/public/images/written-part.png new file mode 100644 index 0000000..96933c7 Binary files /dev/null and b/public/images/written-part.png differ diff --git a/src/features/IndexPage/IndexPage.tsx b/src/features/IndexPage/IndexPage.tsx index 36162a7..56b3d2b 100644 --- a/src/features/IndexPage/IndexPage.tsx +++ b/src/features/IndexPage/IndexPage.tsx @@ -8,10 +8,12 @@ import { } from 'libs/graphql'; import { QUERY_PROFESSIONS } from './queries'; +import { Divider } from '@material-ui/core'; import Layout from 'common/Layout/Layout'; import Header from './components/Header/Header'; import Timer from './components/Timer/Timer'; import AboutExam from './components/AboutExam/AboutExam'; +import ExamParts from './components/ExamParts/ExamParts'; interface IndexPageProps { professions: Profession[]; @@ -25,6 +27,8 @@ const IndexPage = ({ qualifications, dateOfTheExam }: IndexPageProps) => {
+ + ); }; diff --git a/src/features/IndexPage/components/ExamParts/ExamParts.tsx b/src/features/IndexPage/components/ExamParts/ExamParts.tsx new file mode 100644 index 0000000..075686e --- /dev/null +++ b/src/features/IndexPage/components/ExamParts/ExamParts.tsx @@ -0,0 +1,67 @@ +import Image from 'next/image'; +import { makeStyles } from '@material-ui/core/styles'; +import { Typography, Container, Grid } from '@material-ui/core'; +import Section, { Size } from '../Section/Section'; + +function AboutSection() { + const classes = useStyles(); + return ( +
+ + + Z czego składa się egzamin zawodowy? + + + +
+ Część pisemna +
+ Część pisemna + + Część pisemna jest przeprowadzana w formie testu pisemnego. Trwa + 60 minut i przeprowadzana jest w formie testu składającego się z + 40 zadań zamkniętych zawierających cztery odpowiedzi do wyboru, z + których tylko jedna odpowiedź jest prawidłowa. + +
+ +
+ Część praktyczna +
+ Część praktyczna + + Część praktyczna jest przeprowadzana w formie testu praktycznego i + trwa nie krócej niż 120 minut i nie dłużej niż 240 minut. Egzamin + polega na wykonaniu przez zdającego zadania egzaminacyjnego + zawartego w arkuszu egzaminacyjnym na stanowisku egzaminacyjnym. + +
+
+
+
+ ); +} + +const useStyles = makeStyles(theme => ({ + examPart: { + '& > *:not(:last-child)': { + marginBottom: theme.spacing(1), + }, + }, + imageWrapper: { + width: '75%', + margin: 'auto', + }, +})); + +export default AboutSection;