Files
web/components/Hero/index.tsx
2024-12-12 11:47:44 +01:00

19 lines
360 B
TypeScript

import Image from "@/components/Image"
import styles from "./hero.module.css"
import type { HeroProps } from "./hero"
export default async function Hero({ alt, src, focalPoint }: HeroProps) {
return (
<Image
className={styles.hero}
alt={alt}
height={480}
width={1196}
src={src}
focalPoint={focalPoint}
/>
)
}