oxen-website/components/HomeHero.tsx

23 lines
518 B
XML

import Image from 'next/image';
export function HomeHero() {
return (
<div
style={{
transform: ``,
// Make image expand into sidebar direction
direction: 'rtl',
}}
>
<Image
className="absolute bottom-0 left-0 object-cover h-full min-w-full transform"
src="/hero.svg"
alt="Hero Landing Page, depicting the integration of privacy and technology"
layout="fill"
priority={true}
loading="eager"
/>
</div>
);
}