Skip to content

Commit 370a6b3

Browse files
update homepage buttons styles, update classes naming on the home page and static pages (#28)
1 parent 1d4272a commit 370a6b3

12 files changed

+425
-540
lines changed

src/AboutUs.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
import React from 'react';
3+
import { useTranslation } from './app-state';
4+
5+
function AboutUs() {
6+
const { t } = useTranslation();
7+
8+
return (
9+
<div className="aboutus">
10+
<div className="static-container container">
11+
<h1 className="view-title">
12+
{t('about-us')}
13+
</h1>
14+
<div className="static-container">
15+
<p>
16+
{t('lorem-ipsum')}
17+
</p>
18+
</div>
19+
</div>
20+
</div>
21+
);
22+
}
23+
24+
export default AboutUs;

src/AboutUsPage.tsx

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/ContactUs.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
import React from 'react';
3+
import { useTranslation } from './app-state';
4+
5+
function ContactUs() {
6+
const { t } = useTranslation();
7+
8+
return (
9+
<div className="contactus">
10+
<div className="static-container container">
11+
<h1 className="view-title">
12+
{t('contact-us')}
13+
</h1>
14+
<div className="static-container">
15+
<p>
16+
{t('lorem-ipsum')}
17+
</p>
18+
</div>
19+
</div>
20+
</div>
21+
);
22+
}
23+
24+
export default ContactUs;

src/ContactUsPage.tsx

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)