diff --git a/nuxt/assets/css/main.scss b/nuxt/assets/css/main.scss index 1eefb770..8e8ddd2c 100644 --- a/nuxt/assets/css/main.scss +++ b/nuxt/assets/css/main.scss @@ -45,4 +45,18 @@ html { } .user-tag { background-color: #dddddd; -} \ No newline at end of file +} + +div.open-chevron-down-lighthing { + left: 0!important; +} + +@media screen and (max-width: 600px){ + div.open-chevron-down-lighthing { + top: 68px!important; + } +} + +// .v-menu__content.theme--light.v-menu__content--fixed.menuable__content__active { +// left: 0 !important; +// } \ No newline at end of file diff --git a/nuxt/assets/images/LightningNetworkStores.svg b/nuxt/assets/images/LightningNetworkStores.svg index a49ed753..cf47b1ce 100644 --- a/nuxt/assets/images/LightningNetworkStores.svg +++ b/nuxt/assets/images/LightningNetworkStores.svg @@ -1,60 +1,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + Layer 1 + + + + + + Yellow Page + + + \ No newline at end of file diff --git a/nuxt/assets/images/OtherLightningNetworkStores.svg b/nuxt/assets/images/OtherLightningNetworkStores.svg new file mode 100644 index 00000000..a49ed753 --- /dev/null +++ b/nuxt/assets/images/OtherLightningNetworkStores.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/nuxt/components/AddStoreModal.vue b/nuxt/components/AddStoreModal.vue index 99d071d2..8d64a785 100644 --- a/nuxt/components/AddStoreModal.vue +++ b/nuxt/components/AddStoreModal.vue @@ -125,6 +125,14 @@ +
+ +
+ { diff --git a/nuxt/components/Header.vue b/nuxt/components/Header.vue index f0bd9941..b76cdac1 100644 --- a/nuxt/components/Header.vue +++ b/nuxt/components/Header.vue @@ -1,12 +1,30 @@ - - diff --git a/nuxt/pages/store/_id.vue b/nuxt/pages/store/_id.vue index 40ad1525..c3e1bb51 100644 --- a/nuxt/pages/store/_id.vue +++ b/nuxt/pages/store/_id.vue @@ -133,7 +133,7 @@ diff --git a/nuxt/plugins/axios.js b/nuxt/plugins/axios.js index a8b8ce7b..0c143579 100644 --- a/nuxt/plugins/axios.js +++ b/nuxt/plugins/axios.js @@ -1,6 +1,6 @@ export default function ({ $axios }) { $axios.onRequest(config => { - config.headers['Original-Host'] = 'lightningnetworkstores.com' + config.headers['Original-Host'] = 'bitcoinyellow.page' return config }) } \ No newline at end of file diff --git a/nuxt/static/opensearch.xml b/nuxt/static/opensearch.xml index 22641487..a691c191 100644 --- a/nuxt/static/opensearch.xml +++ b/nuxt/static/opensearch.xml @@ -5,5 +5,5 @@ Search stores/apps/projects that accept bitcoin through the lightning network. UTF-8 /favicon-16x16.ico - + diff --git a/nuxt/store/actions.js b/nuxt/store/actions.js index 68dc3239..140914d2 100644 --- a/nuxt/store/actions.js +++ b/nuxt/store/actions.js @@ -92,21 +92,14 @@ const actions = { }, addStore( { state }, - { - name: name, - description: description, - url: url, - uri: uri, - sector: sector, - digitalGoods: digitalGoods, - contributor: contributor, - recaptcha: recaptcha, - } + { contributor, description, lightningAccepted, name, recaptcha, uri, url } ) { - let params = { + const BTCLNMode = lightningAccepted ? ['payments'] : [] + + const params = { accepted: { BTC: { modes: ['payments'] }, - BTCLN: { modes: ['payments'] }, + BTCLN: { modes: BTCLNMode }, }, name: encodeURIComponent(name), description: encodeURIComponent(description),