mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/frontend.git
synced 2024-11-13 05:06:41 +03:00
48 lines
1.9 KiB
TypeScript
48 lines
1.9 KiB
TypeScript
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
|