Merge branch 'release/1.0.0'
All checks were successful
DitesLeEnChanson/site/pipeline/tag This commit looks good

This commit is contained in:
balvarez
2025-12-31 17:19:49 +01:00
2 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "web-app",
"type": "module",
"version": "0.0.1",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite --host :: --port 3000",

View File

@@ -1,6 +1,6 @@
import React from 'react';
import { ShoppingBag, Edit2, Music, Send } from 'lucide-react';
export const STRIPE_PUBLISHABLE_KEY = import.meta.env.VITE_STRIPE_PUBLISHABLE_KEY_DEV;
export const STRIPE_PUBLISHABLE_KEY = import.meta.env.VITE_STRIPE_PUBLISHABLE_KEY;
export const products = [
{
@@ -38,15 +38,15 @@ import React from 'react';
stripePriceId: 'price_1RVTXtEPL3QASpovaWjXf30q',
description: 'Un texte de chanson unique, écrit sur mesure pour vous.',
imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg'
},
{
id: 'prod_SQMCFqFLaNHxx0',
name: 'Test',
price: 17.90,
promotionPrice: null,
stripePriceId: 'price_1RVVUBERAUBjYKpgYuQyuI76',
description: 'Un texte de chanson unique, écrit sur mesure pour vous.',
imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg'
// },
// {
// id: 'prod_SQMCFqFLaNHxx0',
// name: 'Test',
// price: 17.90,
// promotionPrice: null,
// stripePriceId: 'price_1RVVUBERAUBjYKpgYuQyuI76',
// description: 'Un texte de chanson unique, écrit sur mesure pour vous.',
// imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg'
}
];