19 lines
399 B
JavaScript
19 lines
399 B
JavaScript
import Image from "next/image";
|
|
import bgImage from "../public/SprbScan021.png.webp";
|
|
|
|
export default function Background() {
|
|
return (
|
|
<div
|
|
style={{
|
|
position: "fixed",
|
|
height: "100vh",
|
|
width: "100vw",
|
|
overflow: "hidden",
|
|
zIndex: "-1",
|
|
}}
|
|
>
|
|
<Image src={bgImage} alt="background" layout="fill" objectFit="cover" />
|
|
</div>
|
|
);
|
|
}
|