Files
landing-page-2/src/sections/HeaderSection/HeaderSection.tsx
2024-04-30 19:47:04 +03:00

26 lines
1.1 KiB
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 dencoLogo from '../../shared/assets/icons/DENCO лого.svg';
import telegramLogo from '../../shared/assets/icons/лого телега.svg';
import Image from "next/image";
import Link from "next/link";
import {Container} from "@/shared/components/Container/Container";
import styles from "./Header.module.css";
export function HeaderSection() {
return (
<header>
<Container>
<div className={styles.innerContainer}>
<Link href={''}>
<Image className={styles.dencoLogo} src={dencoLogo} alt={'Логотип'}/>
</Link>
<div className={styles.joinGroup}>
<p className={styles.joinText}>Подключиться к сервису</p>
<Link className={styles.link} href={''}>
<Image src={telegramLogo} alt={'Логотип Телеграм'} className={styles.joinLogo}/>
</Link>
</div>
</div>
</Container>
</header>
);
};