Skip to content

Commit 435db3a

Browse files
committed
Replacing Typography Component with Html Tag p
1 parent 5dae531 commit 435db3a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/components/About/About.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@ const About = () => {
6868
<Typography variant="h3">{t("about:title")}</Typography>
6969
</Box>
7070
<Box sx={paragraphStyle}>
71-
<Typography>{t("about:intro")}</Typography>
71+
<p>{t("about:intro")}</p>
7272
</Box>
7373
<Box sx={{ textAlign: "center", width: "100%" }}>
7474
<Typography variant="h3">{t("about:visionTitle")}</Typography>
7575
</Box>
7676
<Box sx={paragraphStyle}>
77-
<Typography>{t("about:visionContent")}</Typography>
77+
<p>{t("about:visionContent")}</p>
7878
</Box>
7979
<Box sx={{ textAlign: "center", width: "100%" }}>
8080
<Typography variant="h3">{t("about:missionTitle")}</Typography>
8181
</Box>
8282
<Box sx={paragraphStyle}>
83-
<Typography>{t("about:missionContent")}</Typography>
83+
<p>{t("about:missionContent")}</p>
8484
</Box>
8585
<Box sx={{ textAlign: "center", width: "100%" }}>
8686
<Typography variant="h3">{t("about:valuesTitle")}</Typography>
@@ -96,7 +96,7 @@ const About = () => {
9696
<Typography variant="h3">{t("about:fullTextTitle")}</Typography>
9797
</Box>
9898
<Box sx={paragraphStyle}>
99-
<Typography>
99+
<p>
100100
<Trans
101101
i18nKey="about:firstParagraph"
102102
components={[
@@ -114,10 +114,10 @@ const About = () => {
114114
/>,
115115
]}
116116
/>
117-
</Typography>
117+
</p>
118118
</Box>
119119
<Box sx={paragraphStyle}>
120-
<Typography>
120+
<p>
121121
<Trans
122122
i18nKey="about:secondParagraph"
123123
components={[
@@ -135,17 +135,17 @@ const About = () => {
135135
/>,
136136
]}
137137
/>
138-
</Typography>
138+
</p>
139139
</Box>
140140
<Box sx={paragraphStyle}>
141-
<Typography>
141+
<p>
142142
<Trans i18nKey="about:thirdParagraph" />
143-
</Typography>
143+
</p>
144144
</Box>
145145
<Box sx={paragraphStyle}>
146-
<Typography>
146+
<p>
147147
<Trans i18nKey="about:forthParagraph" />
148-
</Typography>
148+
</p>
149149
</Box>
150150
</Box>
151151
);

0 commit comments

Comments
 (0)