lending-next/components/header/index.tsx
2022-03-27 13:32:40 +03:00

31 lines
821 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 Link from 'next/link'
import styles from './Header.module.css'
import react from "react"
export const Header:React.FC = () =>{
return(
<div className={styles.header}>
<Link href="#main">
<a className={styles.link} style={{color: "#000 !important", marginLeft: "25px"}}>
Главная
</a>
</Link>
<Link href="#buy">
<a className={styles.link}>
Купить квест
</a>
</Link>
<Link href="#team">
<a className={styles.link}>
Наша команда
</a>
</Link>
<Link href="#contacts">
<a className={styles.link}>
Связь с нами
</a>
</Link>
</div>
)
}