lending-next/components/footer/index.tsx
2022-03-27 14:42:19 +03:00

26 lines
907 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 './Footer.module.css'
import React from "react"
import Link from 'next/link';
export const MyFooter: React.FC = () =>{
return(
<footer className={styles.footer}>
<div className={styles.copyright}>© PYC Пуртов Михаил, Василенко Илья, Лунев Даниил</div>
<Link href="https://instagram.com">
<a>
<img className={styles.socMedia} src="/images/inst.svg"/>
</a>
</Link>
<Link href="https://youtube.com">
<a>
<img className={styles.socMedia} src="/images/yt.svg"/>
</a>
</Link>
<Link href="https://vk.com">
<a>
<img className={styles.socMedia} src="/images/vk.svg"/>
</a>
</Link>
</footer>
);
}