aboutsummaryrefslogtreecommitdiff
path: root/client/src/views/Home.vue
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/views/Home.vue')
-rw-r--r--client/src/views/Home.vue11
1 files changed, 7 insertions, 4 deletions
diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue
index 77ed4e4..3e89885 100644
--- a/client/src/views/Home.vue
+++ b/client/src/views/Home.vue
@@ -1,15 +1,18 @@
<template>
- <div>
- <ExampleComponent msg="Example text inside example component."/>
+ <div class="row mt-5">
+ <div class="col-lg-3 col-md-4 col-sm-6">
+ <ProductCard/>
+ </div>
</div>
</template>
<script>
-import ExampleComponent from '@/components/ExampleComponent';
+import ProductCard from '@/components/ProductCard';
+
export default {
name: 'Home',
components: {
- ExampleComponent
+ ProductCard
}
}
</script>