f5a2519701
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>
20 lines
486 B
TypeScript
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>
|
|
);
|
|
}
|