add full-bleed image section

This commit is contained in:
Marco
2026-06-30 11:47:46 +00:00
parent 68c615010c
commit e34e06f907
3 changed files with 16 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
import { Hero } from "./components/Hero";
import { Tagline } from "./components/Tagline";
import { About } from "./components/About";
import { FullbleedImage } from "./components/FullbleedImage";
export default function Home() {
return (
@@ -8,6 +9,7 @@ export default function Home() {
<Hero />
<Tagline />
<About />
<FullbleedImage />
</main>
);
}