frontend/pages/about.tsx
2022-08-28 03:07:26 +03:00

48 lines
1.9 KiB
TypeScript
Raw 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 type { NextPage } from 'next'
import Head from 'next/head'
import { ErrorViewer } from '../Components/ErrorViewer'
import { FileUploader } from '../Components/FileUploader'
import { Header } from '../Components/header'
import styles from '../styles/Home.module.css'
import 'antd/dist/antd.css';
import { ItemSelect, SelectItemIE } from '../Components/ItemSelect'
import { useState } from 'react'
import { useRouter } from 'next/router'
const About: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<Header></Header>
<div className={styles.upload} style={{paddingTop:"100px", paddingBottom:"100px"}}>
<div className={styles.h1} >Наша команда</div>
<div className={styles.profileWrapper}>
<img className={styles.profileCard} src="/images/member1.png"></img>
<img className={styles.profileCard} src="/images/member2.png"></img>
<img className={styles.profileCard} src="/images/member3.png"></img>
<img className={styles.profileCard} src="/images/member4.png"></img>
<img className={styles.profileCard} src="/images/member5.png"></img>
</div>
<div>
<div className={styles.mText}>Cсылка на репозиторий GitHub:</div>
<div className={styles.sourceLink}>https://github.com/orgs/Ai-hack-MAGNUM-OPUS/repositories</div>
<div className={styles.mText}>Cсылка на презентацию:</div>
<div className={styles.sourceLink}>https://github.com/orgs/Ai-hack-MAGNUM-OPUS/repositories</div>
</div>
</div>
</main>
</div>
)
}
export default About