Files
setka/src/pages/HomePage/components/MainBlock/MainBlock.jsx
Egor Matveev a6f6b17c98
All checks were successful
Deploy Prod / Build (pull_request) Successful in 38s
Deploy Prod / Push (pull_request) Successful in 13s
Deploy Prod / Deploy prod (pull_request) Successful in 12s
init
2025-09-17 19:03:20 +03:00

29 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 { Logo } from '../../../../components/Logo/Logo';
import { typo } from '@utils/typo';
import { ButtonGroup } from './components/ButtonGroup/ButtonGroup';
import { Header } from './components/Header/Header';
import styles from './MainBlock.module.css';
export const MainBlock = () => {
return (
<>
<div className={styles.block}>
<div className={styles.logo}>
<Logo/>
</div>
<Header/>
<p className={styles.text}>
{typo(`Мы объединили вайб кофейни Surf Coffee®
с возможностями нетворкинга в соцсети от hh.ru Сетке, чтобы создать
больше крутых пересечений.`)}
<br/>
<br/>
{typo(`Теперь можно пересечься с нужными людьми из вашей индустрии,
которые уже с вами на одной волне, ведь они тоже выбирают Surf\u00A0Coffee®.`)}
</p>
<ButtonGroup/>
</div>
</>
)
}