Skip to content

Commit

Permalink
Add bell logo
Browse files Browse the repository at this point in the history
* Add basic upload option
  • Loading branch information
Tamalera committed Oct 22, 2022
1 parent ec33feb commit ea5c429
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 16 additions & 9 deletions frontend/team14_bell_frontend/src/components/HelloWorld.vue
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
<template>
<v-container>
<v-row class="mt-2" align="center" justify="center">
<v-img src="../assets/bell.jpeg" max-width="100" max-height="auto">
</v-img>
<span>Belliscious!</span>
</v-row>
<v-row class="text-center">
<v-col class="mb-4">
<h1 class="display-2 font-weight-bold mb-3">
Welcome to MAIN
</h1>
<v-col cols="12">
<v-file-input
truncate-length="15"
accept="image/png, image/jpeg, image/bmp"
prepend-icon="mdi-camera"
label="Upload Image"
></v-file-input>
</v-col>
</v-row>
</v-container>
</template>

<script>
export default {
name: 'HelloWorld',
export default {
name: "HelloWorld",
data: () => ({
}),
}
data: () => ({}),
};
</script>

0 comments on commit ea5c429

Please sign in to comment.