From 17a19e66d5bc6e5320a7a94d444a6c13b64d90ce Mon Sep 17 00:00:00 2001 From: Elena Date: Fri, 29 Nov 2024 09:52:59 +0100 Subject: [PATCH] model corrections --- src/components/Model.jsx | 2 +- src/constants/index.js | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/Model.jsx b/src/components/Model.jsx index b4bce6d..be1abae 100644 --- a/src/components/Model.jsx +++ b/src/components/Model.jsx @@ -13,7 +13,7 @@ import { animateWithGsapTimeline } from "../utils/animations"; const Model = () => { const [size, setSize] = useState('small'); const [model, setModel] = useState({ - title: '10s Holder in Yellow color', + title: '10cm Winnie in Yellow color', color: ["#f2a608", "#f1202", "#6fde9b", "#2596be", "#5bcb76", "#fb8436", "#cc1c14"], img: yellowImg, }) diff --git a/src/constants/index.js b/src/constants/index.js index 89c6bfb..bfba263 100644 --- a/src/constants/index.js +++ b/src/constants/index.js @@ -69,45 +69,45 @@ import { export const models = [ { id: 1, - title: "Blue Tube", + title: "Blue Winnie", color: ["#2596be"], img: blueImg, }, { id: 2, - title: "Green Tube", + title: "Green Winnie", color: ["#5bcb76"], img: greenImg, }, { id: 3, - title: "Orange Tub", + title: "Orange Winnie", color: ["#fb8436"], img: orangeImg, }, { id: 4, - title: "Red Tub", + title: "Red Winnie", color: ["#cc1c14"], img: redImg, }, { id: 5, - title: "Turquoise Tub", + title: "Turquoise Winnie", color: ["#6fde9b"], img: turquoiseImg, }, { id: 6, - title: "Yellow Tub", + title: "Yellow Winnie", color: ["#fbdc4e"], img: yellowImg, } ]; export const sizes = [ - { label: '8s', value: "small" }, - { label: '12s"', value: "large" }, + { label: '8cm', value: "small" }, + { label: '12cm', value: "large" }, ];