generated from shampsdev/react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from shampsdev:dev
Implemented fixes, added gif for mobile
- Loading branch information
Showing
6 changed files
with
39 additions
and
33 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,38 @@ | ||
import { AnimatedLogo } from '@/components/animated-logo'; | ||
import { Icons } from '@/components/icons'; | ||
import { TextLogo } from '@/components/text-logo'; | ||
|
||
export const HeroSection = () => { | ||
return ( | ||
<div | ||
id='hero' | ||
className='min-h-svh w-full flex justify-center items-center flex-col gap-y-8' | ||
> | ||
<AnimatedLogo /> | ||
<TextLogo char='full' className='md:hidden w-[90%] h-fit' /> | ||
<p className='text-xl text-center'> | ||
We are the champions - Мы Шампиньоны | ||
</p> | ||
<p className='text-muted-foreground md:text-lg max-w-[90%] md:max-w-[70%] text-center'> | ||
Мы команда Шампиньоны из ИТМО. От побед в хакатонах <Icons.trophey /> и | ||
создания TravelTech <Icons.plane /> решений выросли в IT-микроагентство.{' '} | ||
<Icons.computer /> Здесь рассказываем о наших проектах и достижениях. | ||
Всегда открыты для новых идей и сотрудничества. <Icons.heart /> | ||
</p> | ||
<a | ||
href='https://t.me/m/Hl0aa0mKNDRi' | ||
target='_blank' | ||
rel='noopener noreferrer' | ||
className='inline-block bg-black text-white text-lg py-3 px-10 rounded-full text-center' | ||
<div> | ||
<div | ||
id='hero' | ||
className='min-h-[80vh] w-full flex justify-center pt-20 items-center flex-col gap-y-8' | ||
> | ||
[ Написать шампиньонам ] | ||
</a> | ||
<AnimatedLogo /> | ||
<img | ||
className='md:hidden w-[90%] h-fit' | ||
src='/logo-icons/shamps.gif' | ||
alt='' | ||
/> | ||
<p className='text-xl text-center'> | ||
We are the champions - Мы Шампиньоны | ||
</p> | ||
<p className='text-muted-foreground md:text-lg max-w-[90%] md:max-w-[70%] text-center'> | ||
Мы команда Шампиньоны из ИТМО. От побед в хакатонах <Icons.trophey />{' '} | ||
и создания TravelTech <Icons.plane /> решений выросли в | ||
IT-микроагентство. <Icons.computer /> Здесь рассказываем о наших | ||
проектах и достижениях. Всегда открыты для новых идей и | ||
сотрудничества. <Icons.heart /> | ||
</p> | ||
<a | ||
href='https://t.me/m/Hl0aa0mKNDRi' | ||
target='_blank' | ||
rel='noopener noreferrer' | ||
className='inline-block bg-black text-white text-lg py-3 px-10 rounded-full text-center' | ||
> | ||
[ Написать шампиньонам ] | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters