feat: Implement marketing page layout, core sections, and shared UI components.

This commit is contained in:
2026-01-06 12:53:57 +01:00
parent 170c2e9c80
commit 2a057ae3e3
9 changed files with 44 additions and 20 deletions

View File

@@ -86,7 +86,7 @@ export const Hero: React.FC<HeroProps> = ({ t }) => {
{templateCards.map((card, index) => (
<Card key={index} className={`${card.color} border-0 p-6 text-center hover:scale-105 transition-transform`}>
<div className="text-3xl mb-2">{card.icon}</div>
<h3 className="font-semibold text-gray-800">{card.title}</h3>
<p className="font-semibold text-gray-800">{card.title}</p>
</Card>
))}
</div>