Add TypeScript type definitions for React and React DOM; update Hero235 component with new background styles; modify homepage title and include About19 component.

This commit is contained in:
Matthias
2026-04-21 10:43:47 +02:00
parent d6b65c0847
commit cf8c9e1186
5 changed files with 82 additions and 3 deletions

View File

@@ -0,0 +1,58 @@
import { cn } from "@/lib/utils";
interface About19Props {
className?: string;
}
const About19 = ({ className }: About19Props) => {
return (
<section className={cn("py-32", className)}>
<div className="container">
<div className="grid grid-cols-1 gap-15 lg:grid-cols-7 lg:gap-1">
<div className="col-span-4 h-120">
<img
src="https://deifkwefumgah.cloudfront.net/shadcnblocks/block/guri4/img2.png"
alt=""
className="h-full w-full object-cover rounded-xl shadow-md"
/>
</div>
<div className="col-span-3 ml-auto max-w-4xl space-y-15 lg:pl-15">
<h1 className="text-2xl font-medium tracking-tight">
We are a team of creators, thinkers, and builders who believe in
crafting experiences that truly connect. Our story is built on
passion, innovation, and the drive to bring meaningful ideas to
life.
</h1>
<p className="text-base text-foreground/40 lg:text-lg">
We ask: Whats the goal? Whos it for? How do we make it
effortless? we begin with why, who, and how to make it better.
</p>
<div className="flex flex-col justify-between gap-4 lg:flex-row lg:items-center">
<p className="flex-1 text-sm text-foreground/40">
We aim to bring diverse minds together, turning ideas into
experiences that matter.
</p>
<div className="flex w-fit items-center gap-2">
<img
src="https://deifkwefumgah.cloudfront.net/shadcnblocks/block/guri3/avatar1.png"
className="size-10"
alt="avatr"
/>
<div>
<h3 className="font-medium tracking-tight">John Doe</h3>
<p className="text-sm text-foreground/40">
Creative Director
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
);
};
export { About19 };