Initial commit: Kottgard production website code
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { Product } from '@/domain/entities';
|
||||
|
||||
export interface LocalizedProduct {
|
||||
id: string;
|
||||
slug: string;
|
||||
category: Product['category'];
|
||||
name: string;
|
||||
description: string;
|
||||
longDescription: string;
|
||||
price: number;
|
||||
priceUnit: string;
|
||||
image: string;
|
||||
images: string[];
|
||||
badge?: string;
|
||||
inStock: boolean;
|
||||
featured: boolean;
|
||||
weight?: string;
|
||||
tags: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user