feat(F-071): completed feature

This commit is contained in:
chattie
2026-08-19 19:04:41 +02:00
parent 16e4e86fbe
commit cf67f51d07
22 changed files with 495 additions and 74 deletions

View File

@@ -69,7 +69,7 @@ export default async function CategoryPage({ params }: PageProps) {
Categoría
</p>
<h1 className="text-4xl font-bold tracking-tight text-emerald-950 md:text-5xl">
{category.name}
{category.emoji ? `${category.emoji} ${category.name}` : category.name}
</h1>
<p className="text-lg leading-8 text-stone-700">
{category.seoDescription ?? 'Descubrí productos seleccionados dentro de esta categoría.'}

View File

@@ -20,6 +20,8 @@ export interface CategoryDto {
url: string;
seoTitle: string | null;
seoDescription: string | null;
emoji?: string | null;
color?: string | null;
createdAt: string;
updatedAt: string;
}