feat: source page
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JustTemmie 2025-05-28 07:13:40 +02:00
parent ed076c3edc
commit 14f4ee86e5
2 changed files with 66 additions and 3 deletions

View file

@ -4,14 +4,13 @@
Welcome to <span id="gorb"> Welcome to <span id="gorb">
<span>G</span><span>O</span><span>R</span><span>B</span></span>!</h1> <span>G</span><span>O</span><span>R</span><span>B</span></span>!</h1>
<h2> <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! Chat Platform!
</h2> </h2>
<NuxtLink class="link" href="/"><s>Go to web client</s></NuxtLink> <NuxtLink class="link" href="/"><s>Go to web client</s></NuxtLink>
<p id="not-exist">IT DOESN'T EXIST YET</p> <p id="not-exist">IT DOESN'T EXIST YET</p>
<p> <p>
BUT! Check out our <NuxtLink id="git-link" href="https://git.gorb.app/gorb">Git</NuxtLink> to check on our BUT! Check out our <NuxtLink id="git-link" href="https://git.gorb.app/gorb">Git</NuxtLink> to check on our progress!
progress!
</p> </p>
</div> </div>
</template> </template>

64
pages/source.vue Normal file
View 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>