This commit is contained in:
sasha-astiadi 2024-08-26 21:57:05 +02:00
parent 88bbf8715f
commit b8020bac4f
4 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,5 @@
import { Homepage } from '@/components/Homepage' import { Homepage } from '@/components/Homepage'
import { LogoPage } from '@/components/Logopage'
import { Hero } from '@/components/Hero' import { Hero } from '@/components/Hero'
import { Newsletter } from '@/components/Newsletter' import { Newsletter } from '@/components/Newsletter'
import { Schedule } from '@/components/Schedule' import { Schedule } from '@/components/Schedule'
@ -9,10 +10,10 @@ export default function Home() {
return ( return (
<> <>
<Homepage /> <Homepage />
<Sponsors />
<Hero /> <Hero />
<Speakers /> <Speakers />
<Schedule /> <Schedule />
<Sponsors />
<Newsletter /> <Newsletter />
</> </>
) )

View File

@ -26,8 +26,8 @@ export function BackgroundImage({ className, position = 'left' }) {
priority priority
unoptimized unoptimized
/> />
<div className="absolute inset-x-0 top-0 h-40 bg-gradient-to-b from-white" /> <div className="absolute inset-x-0 top-0 h-20 bg-gradient-to-b from-white" />
<div className="absolute inset-x-0 bottom-0 h-40 bg-gradient-to-t from-white" /> <div className="absolute inset-x-0 bottom-0 h-20 bg-gradient-to-t from-white" />
</div> </div>
) )
} }

View File

@ -13,7 +13,7 @@ export function BackgroundVideo({ className }) {
playsInline playsInline
className={`absolute inset-0 w-full h-full object-cover ${className}`} className={`absolute inset-0 w-full h-full object-cover ${className}`}
> >
<source src="/video/ourverse.mp4" type="video/mp4" /> <source src="/video/ourverse2.mp4" type="video/mp4" />
Your browser does not support the video tag. Your browser does not support the video tag.
</video> </video>
); );

View File

@ -6,7 +6,7 @@ export function Gradient({ children, className = '' }) {
<div <div
className={`relative ${className}`} className={`relative ${className}`}
style={{ style={{
background: 'linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(253,253,253,0) 100%)', background: 'linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(253,253,253,0) 90%)',
}} }}
> >
{children} {children}