popskip/pages/projects/starlight.vue

83 lines
2.0 KiB
Vue

<template>
<div class="page">
<div class="card title-card">
<div class="card-subtitle">
<p>Projects</p>
</div>
<div class="card-title">
<h1>Starlight</h1>
</div>
<div class="card-content">
<p>
<a href="#">not yet released</a>
</p>
</div>
</div>
<div class="card">
<div class="card-title">
<h1>Description</h1>
</div>
<div class="card-content">
<p>
A set of backend and frontend applications for registrations.
</p>
<p>
Revue Starlight is the main frontend through which new members register.
</p>
<p>
Starlight Server is a local server for storing data temporarily,
because internet connection might be non-existent on-site.
</p>
<p>
Sana is the final repository of registration data. Local data from Starlight Server is uploaded
and processed to yield the final database.
</p>
</div>
</div>
<div class="card">
<div class="card-title">
<h1>Technologies</h1>
</div>
<div class="card-content">
<p>Revue Starlight:</p>
<ul>
<li>Vue.js</li>
<li>Vuetify</li>
</ul>
<p>Starlight Server:</p>
<ul>
<li>Go</li>
<li>JSON</li>
</ul>
<p>Sana:</p>
<ul>
<li>Laravel</li>
<li>Bootstrap</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-title">
<h1>Screenshots</h1>
</div>
<div class="card-content">
<div class="gallery">
<GalleryImage :src="require('~/assets/projects/starlight/1.png')" />
</div>
</div>
</div>
</div>
</template>
<script>
import GalleryImage from '~/components/GalleryImage';
export default {
components: {
GalleryImage,
},
}
</script>
<style>
</style>