mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2024-11-15 04:46:34 +03:00
13 lines
537 B
TypeScript
13 lines
537 B
TypeScript
|
import Link from "next/link";
|
|||
|
import React from "react"
|
|||
|
import styles from "./header.module.css"
|
|||
|
|
|||
|
export const MyHeader:React.FC = () =>{
|
|||
|
return(
|
|||
|
<div className={styles.header}>
|
|||
|
<div className={styles.link}><Link href="/">Главная</Link></div>
|
|||
|
<div className={styles.link}><Link className={styles.link} href="/about-us">О нас</Link></div>
|
|||
|
<div className={styles.link}><Link className={styles.link} href="/about-project">О проекте</Link></div>
|
|||
|
</div>
|
|||
|
);
|
|||
|
}
|