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>
This commit is contained in:
Marco
2026-06-30 12:02:48 +00:00
parent f5a2519701
commit d44db8165d
11 changed files with 416 additions and 0 deletions
+6
View File
@@ -4,6 +4,9 @@ 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 (
@@ -14,6 +17,9 @@ export default function Home() {
<FullbleedImage />
<Services />
<Portfolio />
<Testimonials />
<News />
<Footer />
</main>
);
}