mirror of
https://github.com/spitkov/yaerguossite.git
synced 2025-01-18 12:14:39 +01:00
added collaborators
This commit is contained in:
parent
644defdb17
commit
f6abe52a8d
2 changed files with 137 additions and 0 deletions
137
src/routes/collaborators/+page.svelte
Normal file
137
src/routes/collaborators/+page.svelte
Normal file
|
@ -0,0 +1,137 @@
|
||||||
|
<script lang="ts">
|
||||||
|
import '../../app.css';
|
||||||
|
import { fade, fly, scale } from 'svelte/transition';
|
||||||
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
|
let mounted = false;
|
||||||
|
onMount(() => {
|
||||||
|
mounted = true;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<header class="bg-black px-8 py-4 flex justify-between items-center">
|
||||||
|
<!-- Logo that redirects to the home page -->
|
||||||
|
<div class="cursor-pointer" on:click={() => window.location.href = '/'}>
|
||||||
|
<img src="/lilypad.png" alt="Logo" class="h-10"> <!-- Replace with your logo -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Navigation links -->
|
||||||
|
<nav class="flex gap-8">
|
||||||
|
<a href="https://discord.com" target="_blank" rel="noopener noreferrer" class="text-white font-khand hover:text-blue-400 transition-colors">Discord</a>
|
||||||
|
<a href="/faq" class="text-white font-khand hover:text-blue-400 transition-colors">FAQ</a>
|
||||||
|
<a href="/collaborators" class="text-white font-khand hover:text-blue-400 transition-colors">Collaborators</a>
|
||||||
|
<a href="/download" class="text-white font-khand hover:text-blue-400 transition-colors">Download</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="min-h-screen flex flex-col">
|
||||||
|
<section class="py-32 text-center relative overflow-hidden">
|
||||||
|
<div class="absolute inset-0 bg-gradient-radial from-hero-top/20 to-transparent pointer-events-none"></div>
|
||||||
|
<div class="absolute inset-0 opacity-30">
|
||||||
|
<div class="absolute top-20 left-20 w-72 h-72 bg-text-primary/20 rounded-full filter blur-3xl animate-pulse"></div>
|
||||||
|
<div class="absolute bottom-20 right-20 w-96 h-96 bg-hero-top/30 rounded-full filter blur-3xl animate-pulse" style="animation-delay: 1s;"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container mx-auto px-4 relative">
|
||||||
|
{#if mounted}
|
||||||
|
<div in:fly={{ y: -20, duration: 800 }} class="space-y-8">
|
||||||
|
|
||||||
|
<div class="flex items-center gap-4 justify-center">
|
||||||
|
<h1 class="text-7xl font-khand text-transparent bg-gradient-to-r from-white to-white/80 bg-clip-text leading-normal">yaerguOS</h1>
|
||||||
|
<img src="/lilypad.png" alt="lilypad" class="h-24 w-auto " />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="max-w-2xl mx-auto space-y-4">
|
||||||
|
<p class="text-4xl text-white/90 font-khand">FAQ</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex justify-center gap-4 mt-8">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="py-32 relative flex-grow overflow-hidden">
|
||||||
|
<div class="absolute inset-0 bg-gradient-radial from-features-bg/50 to-transparent pointer-events-none"></div>
|
||||||
|
<div class="absolute inset-0 opacity-30">
|
||||||
|
<div class="absolute top-40 right-20 w-64 h-64 bg-text-primary/10 rounded-full filter blur-3xl animate-pulse"></div>
|
||||||
|
<div class="absolute bottom-40 left-20 w-80 h-80 bg-hero-top/20 rounded-full filter blur-3xl animate-pulse" style="animation-delay: 2s;"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container mx-auto px-4 relative">
|
||||||
|
{#if mounted}
|
||||||
|
<div class="group bg-white/5 backdrop-blur-md rounded-xl p-4 border border-white/10 hover:bg-white/10 transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 flex items-center">
|
||||||
|
<!-- Image section -->
|
||||||
|
<div class="w-32 h-32 mb-0 bg-gradient-to-br from-hero-left to-text-primary/30 rounded-xl p-2 group-hover:scale-110 transition-transform duration-300 shadow-lg flex-shrink-0">
|
||||||
|
<img src="/spitkov.png" alt="Spitkov" class="w-full h-full object-cover rounded" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Text section -->
|
||||||
|
<div class="ml-6">
|
||||||
|
<h3 class="text-2xl font-khand text-transparent bg-gradient-to-r from-white to-white/90 bg-clip-text">Spitkov</h3>
|
||||||
|
<p class="text-text-muted mt-2">Web Dev, new yns CLI and yns GUI</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto" in:fade={{ duration: 800, delay: 400 }}>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer class="py-12 relative">
|
||||||
|
<div class="absolute inset-0 bg-black/20 backdrop-blur-sm"></div>
|
||||||
|
<div class="container mx-auto px-4 relative">
|
||||||
|
<div class="flex flex-col md:flex-row justify-between items-center gap-6 text-white/60">
|
||||||
|
<div>
|
||||||
|
<p class="text-lg">© 2025 yaerguOS. All rights reserved.</p>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-8">
|
||||||
|
<a href="#" class="hover:text-white transition-all duration-200 hover:-translate-y-1">
|
||||||
|
<span class="flex items-center gap-2">
|
||||||
|
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
|
||||||
|
</svg>
|
||||||
|
GitHub
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
<a href="#" class="hover:text-white transition-all duration-200 hover:-translate-y-1">
|
||||||
|
<span class="flex items-center gap-2">
|
||||||
|
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3847-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"/>
|
||||||
|
</svg>
|
||||||
|
Discord
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
<a href="#" class="hover:text-white transition-all duration-200 hover:-translate-y-1">
|
||||||
|
<span class="flex items-center gap-2">
|
||||||
|
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/>
|
||||||
|
</svg>
|
||||||
|
Twitter
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
:global(html) {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes float {
|
||||||
|
0% { transform: translateY(0px); }
|
||||||
|
50% { transform: translateY(-10px); }
|
||||||
|
100% { transform: translateY(0px); }
|
||||||
|
}
|
||||||
|
|
||||||
|
.animate-float {
|
||||||
|
animation: float 3s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
</style>
|
BIN
static/spitkov.png
Executable file
BIN
static/spitkov.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 114 KiB |
Loading…
Reference in a new issue