Files
my-app/app/page.tsx
T
Marco d44db8165d Add Testimonials, News, and Footer sections
- Testimonials: scattered absolute-positioned cards with rotations over a giant background "Testimonials" text (desktop), stacked on mobile
- News: bg-[#f3f3f3], rotated vertical heading, 3 article cards with vertical dividers, middle card offset 120px down
- Footer: black bg, CTA + socials, hr, giant clipped H.Studio wordmark, "[ Coded By Claude ]" rotated label, legal links

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-30 12:02:48 +00:00

26 lines
687 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";
import { Testimonials } from "./components/Testimonials";
import { News } from "./components/News";
import { Footer } from "./components/Footer";
export default function Home() {
return (
<main>
<Hero />
<Tagline />
<About />
<FullbleedImage />
<Services />
<Portfolio />
<Testimonials />
<News />
<Footer />
</main>
);
}