lending-next/components/main/index.tsx
2022-05-07 00:23:01 +03:00

16 lines
528 B
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 styles from './Main.module.css'
import React from "react"
import Link from 'next/link';
export const Main:React.FC = () =>{
return(
<div className={styles.main} id="main">
<h1 >AR Quest</h1>
<h2 style={{"textAlign":"center"}}>Квесты прямо в вашем доме!</h2>
<Link href="#buy" >
<a className={styles.inRow}>
Далее <img src="/images/arrowUp.svg"/>
</a>
</Link>
</div>
);
}