11b21b23cf
Cream card (bg-[#f8f3ec], rounded-xl) inside section padding of 80px. Left copy column has fixed w-[38.25rem] (612px) with icon (-rotate-4) and Lora heading; right form column is flex-1 with email input + orange submit button side by side, privacy note below. Input and button share items-stretch so they align to equal height. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
483 B
TypeScript
20 lines
483 B
TypeScript
import { Hero } from "./components/Hero";
|
|
import { Divider } from "./components/Divider";
|
|
import { Tools } from "./components/Tools";
|
|
import { Blog } from "./components/Blog";
|
|
import { About } from "./components/About";
|
|
import { Newsletter } from "./components/Newsletter";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="flex flex-col flex-1">
|
|
<Hero />
|
|
<Divider />
|
|
<Tools />
|
|
<Blog />
|
|
<About />
|
|
<Newsletter />
|
|
</main>
|
|
);
|
|
}
|