Add Portfolio section (node-id 1:110) — Selected Work

Two-column masonry grid with 4 project cards, frosted-glass category tags, CTA callout, and offset right column matching Figma design.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marco
2026-06-30 11:55:17 +00:00
parent f674b72e7a
commit f5a2519701
7 changed files with 158 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ import { Tagline } from "./components/Tagline";
import { About } from "./components/About";
import { FullbleedImage } from "./components/FullbleedImage";
import { Services } from "./components/Services";
import { Portfolio } from "./components/Portfolio";
export default function Home() {
return (
@@ -12,6 +13,7 @@ export default function Home() {
<About />
<FullbleedImage />
<Services />
<Portfolio />
</main>
);
}