Files
my-app/app/page.tsx
T
Marco f5a2519701 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>
2026-06-30 11:55:17 +00:00

20 lines
486 B
TypeScript

import { Hero } from "./components/Hero";
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 (
<main>
<Hero />
<Tagline />
<About />
<FullbleedImage />
<Services />
<Portfolio />
</main>
);
}