update home page

This commit is contained in:
Jacob Delgado 2023-11-16 22:36:54 -08:00
parent 44a363922d
commit af2881c9e9
4 changed files with 5 additions and 1 deletions

View File

@ -1,11 +1,12 @@
import Link from "next/link"; import Link from "next/link";
import Image from "next/image"; import Image from "next/image";
import { EmblaCarousel } from "./carousel";
export default function Home() { export default function Home() {
return ( return (
<main> <main>
<div className="flex flex-col relative justify-center items-center"> <div className="flex flex-col relative justify-center items-center">
<div className="flex w-full h-[100vh]"> <div className="flex relative w-full h-[100svh]">
<Image <Image
src="/img01.webp" src="/img01.webp"
alt="nav image" alt="nav image"
@ -16,6 +17,9 @@ export default function Home() {
className="brightness-[20%] " className="brightness-[20%] "
/> />
</div> </div>
<div className="flex w-full items-center justify-center">
<EmblaCarousel />
</div>
</div> </div>
</main> </main>
); );