feat: disabled fade in first section
This commit is contained in:
parent
dfc29a740c
commit
8194efa503
@ -9,7 +9,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<video
|
||||
autoPlay
|
||||
className={clsx('hide-on-mobile', s['video'])}
|
||||
|
||||
@ -9,7 +9,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<div className={s['gradient']} />
|
||||
<video
|
||||
autoPlay
|
||||
|
||||
@ -12,7 +12,7 @@ interface HeroProps {
|
||||
|
||||
const Hero = ({ featuredPost }: HeroProps) => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<Heading as="h1" variant="xl" centered>
|
||||
Blog
|
||||
</Heading>
|
||||
|
||||
@ -8,7 +8,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<div className={s['gradient']}></div>
|
||||
<div className={s['video__container']}>
|
||||
<video
|
||||
|
||||
@ -11,7 +11,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<video
|
||||
autoPlay
|
||||
className={clsx('hide-on-mobile', s['video'])}
|
||||
|
||||
@ -6,7 +6,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<Heading as="h1" variant="xl">
|
||||
Privacy Policy
|
||||
</Heading>
|
||||
|
||||
@ -7,7 +7,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<div className={s.gradient} />
|
||||
<video
|
||||
autoPlay
|
||||
|
||||
@ -6,7 +6,7 @@ import s from './hero.module.scss'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<Section className={s['section']}>
|
||||
<Section className={s['section']} disableFadeIn>
|
||||
<Heading as="h1" variant="xl">
|
||||
Terms of Use
|
||||
</Heading>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user