mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 05:17:35 +00:00
4f57df016b
Co-authored-by: ssaddique <ssaddique@axway.com>
54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const NvidiaES: Store = {
|
|
currency: '€',
|
|
labels: {
|
|
inStock: {
|
|
container: '.buy',
|
|
text: ['Añadir al carrito', 'COMPRAR AHORA'],
|
|
},
|
|
outOfStock: {
|
|
container: '.buy',
|
|
text: ['AGOTADO'],
|
|
},
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.nvidia.com/es-es/geforce/graphics-cards/rtx-2060-super/',
|
|
},
|
|
{
|
|
brand: 'nvidia',
|
|
model: 'founders edition',
|
|
series: '3060ti',
|
|
url:
|
|
'https://www.nvidia.com/es-es/shop/geforce/gpu/?page=1&limit=9&locale=es-es&category=GPU&gpu=RTX%203060%20Ti&manufacturer=NVIDIA',
|
|
},
|
|
{
|
|
brand: 'nvidia',
|
|
model: 'founders edition',
|
|
series: '3070',
|
|
url:
|
|
'https://www.nvidia.com/es-es/shop/geforce/gpu/?page=1&limit=9&locale=es-es&category=GPU&gpu=RTX%203070&manufacturer=NVIDIA',
|
|
},
|
|
{
|
|
brand: 'nvidia',
|
|
model: 'founders edition',
|
|
series: '3080',
|
|
url:
|
|
'https://www.nvidia.com/es-es/shop/geforce/gpu/?page=1&limit=9&locale=es-es&category=GPU&gpu=RTX%203080&manufacturer=NVIDIA',
|
|
},
|
|
{
|
|
brand: 'nvidia',
|
|
model: 'founders edition',
|
|
series: '3090',
|
|
url:
|
|
'https://www.nvidia.com/es-es/shop/geforce/gpu/?page=1&limit=9&locale=es-es&category=GPU&gpu=RTX%203090&manufacturer=NVIDIA',
|
|
},
|
|
],
|
|
name: 'nvidia-es',
|
|
};
|