add tagline and about sections

This commit is contained in:
Marco
2026-06-30 11:43:55 +00:00
parent c4771ee1da
commit 68c615010c
10 changed files with 133 additions and 2 deletions
+4
View File
@@ -1,9 +1,13 @@
import { Hero } from "./components/Hero";
import { Tagline } from "./components/Tagline";
import { About } from "./components/About";
export default function Home() {
return (
<main>
<Hero />
<Tagline />
<About />
</main>
);
}