Add more cities
BIN
src/assets/boston.jpg
Normal file
|
After Width: | Height: | Size: 734 KiB |
BIN
src/assets/boston.png
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
BIN
src/assets/chicago.jpg
Normal file
|
After Width: | Height: | Size: 284 KiB |
BIN
src/assets/chicago.png
Normal file
|
After Width: | Height: | Size: 985 KiB |
BIN
src/assets/houston.jpg
Normal file
|
After Width: | Height: | Size: 230 KiB |
BIN
src/assets/houston.png
Normal file
|
After Width: | Height: | Size: 847 KiB |
BIN
src/assets/philly.jpg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
src/assets/philly.png
Normal file
|
After Width: | Height: | Size: 379 KiB |
BIN
src/assets/portland.jpg
Normal file
|
After Width: | Height: | Size: 227 KiB |
BIN
src/assets/portland.png
Normal file
|
After Width: | Height: | Size: 648 KiB |
BIN
src/assets/stlouis.jpg
Normal file
|
After Width: | Height: | Size: 129 KiB |
BIN
src/assets/stlouis.png
Normal file
|
After Width: | Height: | Size: 473 KiB |
@@ -5,7 +5,6 @@
|
|||||||
const MenuStore = useMenuStore();
|
const MenuStore = useMenuStore();
|
||||||
MenuStore.get_today();
|
MenuStore.get_today();
|
||||||
|
|
||||||
|
|
||||||
import EventListingComplete from '../listings/EventListing.vue';
|
import EventListingComplete from '../listings/EventListing.vue';
|
||||||
// import Promo from '../listings/BlueskyLinks.vue';
|
// import Promo from '../listings/BlueskyLinks.vue';
|
||||||
import Promo from '../listings/Promo.vue';
|
import Promo from '../listings/Promo.vue';
|
||||||
|
|||||||
@@ -17,6 +17,21 @@ const router = createRouter({
|
|||||||
name: '000',
|
name: '000',
|
||||||
component: DigiSnaxxView
|
component: DigiSnaxxView
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/boston',
|
||||||
|
name: 'bos',
|
||||||
|
component: DigiSnaxxView
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/chicago',
|
||||||
|
name: 'chi',
|
||||||
|
component: DigiSnaxxView
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/houston',
|
||||||
|
name: 'hou',
|
||||||
|
component: DigiSnaxxView
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/medellin',
|
path: '/medellin',
|
||||||
name: 'mde',
|
name: 'mde',
|
||||||
@@ -27,16 +42,32 @@ const router = createRouter({
|
|||||||
name: 'msp',
|
name: 'msp',
|
||||||
component: DigiSnaxxView
|
component: DigiSnaxxView
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/philly',
|
||||||
|
name: 'phl',
|
||||||
|
component: DigiSnaxxView
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/portland',
|
||||||
|
name: 'pdx',
|
||||||
|
component: DigiSnaxxView
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/stlouis',
|
||||||
|
name: 'stl',
|
||||||
|
component: DigiSnaxxView
|
||||||
|
},
|
||||||
|
|
||||||
// {
|
// {
|
||||||
// path: '/live',
|
// path: '/live',
|
||||||
// name: 'live',
|
// name: 'live',
|
||||||
// component: LiveView
|
// component: LiveView
|
||||||
// },
|
// },
|
||||||
{
|
// {
|
||||||
path: '/media',
|
// path: '/media',
|
||||||
name: 'bluesky',
|
// name: 'bluesky',
|
||||||
component: BlueskyView
|
// component: BlueskyView
|
||||||
},
|
// },
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,30 @@
|
|||||||
<!-- <ButtonSet /> -->
|
<!-- <ButtonSet /> -->
|
||||||
|
|
||||||
<div class="flex grid text-center p-4 grid-flow-row lg:grid-cols-3">
|
<div class="flex grid text-center p-4 grid-flow-row lg:grid-cols-3">
|
||||||
|
<div class="text-center p-2">
|
||||||
|
<a class=" text-center" href="/beyond">
|
||||||
|
<img src="../assets/earth.png" style="width:15em;"/>
|
||||||
|
<p class="text-lg">Beyond</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center p-2">
|
||||||
|
<a class=" text-center" href="/boston" :click="EventsStore.shortcode = 'bos'">
|
||||||
|
<img src="../assets/boston.png" style="width:15em;"/>
|
||||||
|
<p class="text-lg">Boston</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center p-2">
|
||||||
|
<a class=" text-center" href="/chicago" :click="EventsStore.shortcode = 'chi'">
|
||||||
|
<img src="../assets/chicago.png" style="width:15em;"/>
|
||||||
|
<p class="text-lg">Chicago</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center p-2">
|
||||||
|
<a class=" text-center" href="/" :click="EventsStore.shortcode = 'hou'">
|
||||||
|
<img src="../assets/houston.png" style="width:15em;" class="hold"/>
|
||||||
|
<p class="text-lg">Houston</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
<div class="text-center p-2">
|
<div class="text-center p-2">
|
||||||
<a class=" text-center" href="/medellin" :click="EventsStore.shortcode = 'mde'">
|
<a class=" text-center" href="/medellin" :click="EventsStore.shortcode = 'mde'">
|
||||||
<img src="../assets/Medellin.png" style="width:15em;"/>
|
<img src="../assets/Medellin.png" style="width:15em;"/>
|
||||||
@@ -31,9 +55,21 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-center p-2">
|
<div class="text-center p-2">
|
||||||
<a class=" text-center" href="/beyond">
|
<a class=" text-center" href="/philly" :click="EventsStore.shortcode = 'phl'">
|
||||||
<img src="../assets/earth.png" style="width:15em;"/>
|
<img src="../assets/philly.png" style="width:15em;"/>
|
||||||
<p class="text-lg">Beyond</p>
|
<p class="text-lg">Philadelphia</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center p-2">
|
||||||
|
<a class=" text-center" href="/portland" :click="EventsStore.shortcode = 'pdx'">
|
||||||
|
<img src="../assets/portland.png" style="width:15em;"/>
|
||||||
|
<p class="text-lg">Portland</p>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="text-center p-2">
|
||||||
|
<a class=" text-center" href="/" :click="EventsStore.shortcode = 'stl'">
|
||||||
|
<img src="../assets/stlouis.png" style="width:15em;" class="hold"/>
|
||||||
|
<p class="text-lg">St. Louis</p>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -58,4 +94,9 @@ a {
|
|||||||
padding: 2em;
|
padding: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hold {
|
||||||
|
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
|
||||||
|
filter: grayscale(100%);
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||