-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
2,781 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
favicon.png,1592054460750,da69f47ac6469ad03db74bcf8f553c07a98049b9d28281ec39fe24240114dab4 | ||
index.html,1592054460750,2e29838e9473f5e4dde65d24071a46aa1707f74605dcc212007d00e74f4dbabb | ||
favicon.ico,1592054460750,d5451f0f0f0bcbcd433bbdf4f6e7e5d89d8ecce2650649e969ccb5e5cd499ab2 | ||
js/about.1fa8b22b.js,1592054460745,69696376facb7719ea1917f61b563ea5ae03cb54d8ed89edd2839b05c8b6bf86 | ||
js/about.1fa8b22b.js.map,1592054460767,2e284e8a02699d71a51e980e9c9c142b532f01dfbf5387588923e5643b26907d | ||
css/app.5e184c55.css,1592054460745,9ebaf25d5ecec9fcc50171db9523c8a6c970b61eef1f9156b5a0479900ae0af2 | ||
js/app.d84293ec.js,1592054460767,9cdc861021ae666c1b48bda7af1c8d27e372e497d35456e8e0ac2676c4112a4b | ||
js/app.d84293ec.js.map,1592054460767,d10aada5a616ddad32a4cd99ab171143ace1d216230380bca6fda76f708a74bd | ||
js/chunk-vendors.0670018e.js,1592054460767,362593c5a401c128da26ae22e0645c6b1d1df2b22bf5daa27995e078fab301af | ||
js/chunk-vendors.0670018e.js.map,1592054460768,f53d8ccf953af3dc8f2f9cff864d5962a10db7091e288a0c9633c4da6eb62499 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"projects": { | ||
"default": "deliverate-aad6f" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"hosting": { | ||
"public": "dist", | ||
"ignore": [ | ||
"firebase.json", | ||
"**/.*", | ||
"**/node_modules/**" | ||
], | ||
"rewrites": [ | ||
{ | ||
"source": "**", | ||
"destination": "/index.html" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,28 @@ | ||
<template> | ||
<div id="app"> | ||
<div id="nav"> | ||
<div> | ||
<!-- <div> | ||
<router-link to="/">Home</router-link> | | ||
<router-link to="/about">About</router-link> | ||
</div> | ||
</div> --> | ||
<Header /> | ||
<router-view/> | ||
<Footer /> | ||
</div> | ||
</template> | ||
|
||
<style> | ||
#app { | ||
font-family: Avenir, Helvetica, Arial, sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-align: center; | ||
color: #2c3e50; | ||
} | ||
<script> | ||
import Header from '@/components/Header.vue' | ||
import Footer from '@/components/Footer.vue' | ||
#nav { | ||
padding: 30px; | ||
export default { | ||
name: 'App', | ||
components: { | ||
Footer, | ||
Header | ||
} | ||
} | ||
</script> | ||
|
||
#nav a { | ||
font-weight: bold; | ||
color: #2c3e50; | ||
} | ||
<style> | ||
#nav a.router-link-exact-active { | ||
color: #42b983; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<template> | ||
<div class="card-content"> | ||
<div> | ||
<h3>{{delivery.name}}</h3> | ||
<p>{{delivery.description}}</p> | ||
</div> | ||
<div class="info-contact"> | ||
<h4>Pedidos</h4> | ||
<p>{{delivery.phone}}</p> | ||
<p>{{delivery.email}}</p> | ||
</div> | ||
<div class="info-delivery"> | ||
<div :class="[tags[0] === 'comida' ? 'tag-comida' | ||
: tags[0] === 'verduras' ? 'tag-verdura' | ||
: tags[0] === 'huevos' ? 'tag-huevos' : 'tag-otro']" class="tag-comida">{{tags[0].charAt(0).toUpperCase() + tags[0].slice(1)}}</div> | ||
<div class="tiempo-atendiendo"> | ||
<p>{{delivery.atencion}}</p> | ||
<i class="fas fa-calendar"></i> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'CardDelivery', | ||
props: ['delivery'], | ||
data() { | ||
return { | ||
tags: [] | ||
} | ||
}, | ||
created() { | ||
this.tags = Object.values(this.delivery.tag); | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<template> | ||
|
||
<label :class="[comuna.checked ? 'btn-comuna-active' : 'btn-comuna']"> | ||
<input type="checkbox" class="sr-only" v-model="comuna.checked" > | ||
<span class="select-none">{{comuna.nombre}}</span> | ||
</label> | ||
|
||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'comuna', | ||
props: ['comuna'], | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<template> | ||
|
||
<footer class="main-footer"> | ||
<div class="container"> | ||
<div class="content-footer"> | ||
<p>© 2020 Deliverate</p> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<template> | ||
|
||
<header class="header"> | ||
<div class="container"> | ||
<nav class="main-navbar"> | ||
<div class="nav-izq"> | ||
<Logo /> | ||
</div> | ||
<div class="login-navbar"> | ||
<router-link to="/about" class="about-page">Nosotros</router-link> | ||
<router-link to="/registro" class="registro-local">Registra tu local</router-link> | ||
</div> | ||
<div class="nav-responsive"> | ||
<a @click="mostrarResp = !mostrarResp" href="#"><i class="fas fa-bars"></i></a> | ||
</div> | ||
</nav> | ||
<div v-if="mostrarResp" class="navegacion-resp"> | ||
<ul> | ||
<li><router-link to="/about" class="about-page">Nosotros</router-link></li> | ||
<li><router-link to="/registro" class="registro-local">Registra tu local</router-link></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
</template> | ||
|
||
<script> | ||
import Logo from './Logo.vue' | ||
export default { | ||
name: 'Header', | ||
components: { | ||
Logo | ||
}, | ||
data() { | ||
return { | ||
mostrarResp: false | ||
} | ||
}, | ||
} | ||
</script> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.