frontend/pages/about-us.tsx
2022-10-23 03:11:10 +03:00

27 lines
786 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { NextPage } from "next";
import { MyHeader } from "../сomponents/header";
import styles from '../styles/Home.module.css'
import 'antd/dist/antd.css';
const AboutUs: NextPage = () => {
return (
<div className={styles.aboutContainer}>
<MyHeader></MyHeader>
<div className={styles.h1}>
Наша команда
</div>
<div className={styles.imgWrapper}>
<img className={styles.img} src="/member1.png"></img>
<img className={styles.img} src="/member2.png"></img>
<img className={styles.img} src="/member3.png"></img>
<img className={styles.img} src="/member5.png"></img>
</div>
</div>
)
}
export default AboutUs;