This commit is contained in:
parent
ed076c3edc
commit
14f4ee86e5
2 changed files with 66 additions and 3 deletions
|
@ -4,14 +4,13 @@
|
|||
Welcome to <span id="gorb">
|
||||
<span>G</span><span>O</span><span>R</span><span>B</span></span>!</h1>
|
||||
<h2>
|
||||
The <span id="open-source">Open-Source</span> and <span id="federated">Federated</span>
|
||||
The <span class="pansexual-gradient">Open-Source</span> and <span id="federated">Federated</span>
|
||||
Chat Platform!
|
||||
</h2>
|
||||
<NuxtLink class="link" href="/"><s>Go to web client</s></NuxtLink>
|
||||
<p id="not-exist">IT DOESN'T EXIST YET</p>
|
||||
<p>
|
||||
BUT! Check out our <NuxtLink id="git-link" href="https://git.gorb.app/gorb">Git</NuxtLink> to check on our
|
||||
progress!
|
||||
BUT! Check out our <NuxtLink id="git-link" href="https://git.gorb.app/gorb">Git</NuxtLink> to check on our progress!
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
|
64
pages/source.vue
Normal file
64
pages/source.vue
Normal file
|
@ -0,0 +1,64 @@
|
|||
<template>
|
||||
<div id="main">
|
||||
<h2>
|
||||
<span class="pansexual-gradient">Source Code</span>
|
||||
</h2>
|
||||
|
||||
<div id="card-container">
|
||||
<div class="card">
|
||||
<a href="https://git.gorb.app/gorb/backend">
|
||||
<h3>Backend</h3>
|
||||
<p>Gorb's official backend</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="card">
|
||||
<a href="https://git.gorb.app/gorb/frontend">
|
||||
<h3>Frontend</h3>
|
||||
<p>Gorb's official frontend</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
#card-container {
|
||||
--flex-direction: row;
|
||||
|
||||
display: flex;
|
||||
flex-direction: var(--flex-direction);
|
||||
justify-content: space-between;
|
||||
gap: 48px;
|
||||
width: fit-content;
|
||||
max-width: 60vw;
|
||||
margin: 48px auto;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1000px) {
|
||||
#card-container {
|
||||
--flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
flex: 1;
|
||||
padding: 32px;
|
||||
border: 1px solid var(--accent-colour);
|
||||
background-color: var(--primary-colour);
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.card a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
background-color: var(--secondary-colour);
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue