Files
streetmerchant/src/store/model/nvidia-fr.ts
T
2021-02-02 15:25:09 -05:00

54 lines
1.4 KiB
TypeScript

import {Store} from './store';
export const NvidiaFR: Store = {
currency: '€',
labels: {
inStock: {
container: '.buy',
text: ['ajouter au panier', 'acheter maintenant'],
},
outOfStock: {
container: '.buy',
text: ['RUPTURE DE STOCK'],
},
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url:
'https://www.nvidia.com/fr-fr/geforce/graphics-cards/rtx-2060-super/',
},
{
brand: 'nvidia',
model: 'founders edition',
series: '3060ti',
url:
'https://www.nvidia.com/fr-fr/shop/geforce/gpu/?page=1&limit=9&locale=fr-fr&category=GPU&gpu=RTX%203060%20Ti&manufacturer=NVIDIA',
},
{
brand: 'nvidia',
model: 'founders edition',
series: '3070',
url:
'https://www.nvidia.com/fr-fr/shop/geforce/gpu/?page=1&limit=9&locale=fr-fr&category=GPU&gpu=RTX%203070&manufacturer=NVIDIA',
},
{
brand: 'nvidia',
model: 'founders edition',
series: '3080',
url:
'https://www.nvidia.com/fr-fr/shop/geforce/gpu/?page=1&limit=9&locale=fr-fr&category=GPU&gpu=RTX%203080&manufacturer=NVIDIA',
},
{
brand: 'nvidia',
model: 'founders edition',
series: '3090',
url:
'https://www.nvidia.com/fr-fr/shop/geforce/gpu/?page=1&limit=9&locale=fr-fr&category=GPU&gpu=RTX%203090&manufacturer=NVIDIA',
},
],
name: 'nvidia-fr',
};