27 lines
678 B
Vue
27 lines
678 B
Vue
<template>
|
|
<div>
|
|
<v-container fluid>
|
|
<v-card>
|
|
<v-card-title class="text-h5 grey lighten-2">
|
|
About- Gita Enterprise
|
|
</v-card-title>
|
|
|
|
<v-card-text>
|
|
Gita Enterprise - selling bakery ingredients since 2005, We commit to provide all bakery products and related items maintaing the best quality and price ratio.
|
|
</v-card-text>
|
|
|
|
<v-divider></v-divider>
|
|
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
color="primary"
|
|
>
|
|
View Products
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-container>
|
|
</div>
|
|
</template>
|