diff --git a/index.html b/index.html
index 7918f28..ac95523 100644
--- a/index.html
+++ b/index.html
@@ -21,13 +21,6 @@
{{ product }}
In Stock
Out of Stock
-
-
- {{ variant.color }}
diff --git a/main.js b/main.js
index f238d40..1725ec2 100644
--- a/main.js
+++ b/main.js
@@ -4,12 +4,7 @@ const app = Vue.createApp({
product: 'Socks',
image: './assets/images/socks_blue.jpg',
inStock: true,
- details: ['50% cotton', '30% wool', '20% polyester'],
- sizes: ['S', 'M', 'L', 'XL'],
- variants: [
- { id: 2234, color: 'green' },
- { id: 2235, color: 'blue' },
- ]
+ details: ['50% cotton', '30% wool', '20% polyester']
}
}
})