Skip to content

Commit

Permalink
model corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellen010 committed Nov 29, 2024
1 parent 45ef93e commit 17a19e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Model.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})
Expand Down
16 changes: 8 additions & 8 deletions src/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
];


Expand Down

0 comments on commit 17a19e6

Please sign in to comment.