Fixed download URL. Updated Footer and Navbar

This commit is contained in:
Lucas
2026-01-25 14:05:49 +10:00
parent 6d0acc8e04
commit 4b8fc8d469
3 changed files with 9 additions and 3 deletions

View File

@@ -15,7 +15,10 @@ const currentYear = new Date().getFullYear()
<div class="h-8 w-8 rounded-lg bg-primary flex items-center justify-center">
<div class="h-4 w-4 rounded-full border-2 border-primary-foreground" />
</div>
<span class="font-bold text-lg">NoSys</span>
<h1 class="leading-none font-bold text-lg">
<span class="text-yellow-400">No</span>
<span class="text-foreground">Sys</span>
</h1>
</div>
<p class="text-sm text-muted-foreground">
A social network no one can control.

View File

@@ -29,7 +29,10 @@ const navLinks = [
<div class="h-8 w-8 rounded-lg bg-primary flex items-center justify-center">
<div class="h-4 w-4 rounded-full border-2 border-primary-foreground" />
</div>
<span class="font-bold text-lg">NoSys</span>
<h1 class="leading-none font-bold text-lg">
<span class="text-yellow-400">No</span>
<span class="text-foreground">Sys</span>
</h1>
</RouterLink>
<!-- Desktop Navigation -->

View File

@@ -6,7 +6,7 @@ import CardContent from '@/components/ui/CardContent.vue';
import { Download, Shield } from 'lucide-vue-next';
function downloadFile() {
const url = "/downloads/libs/app/start.py";
const url = "https://n0sys.duckdns.org/git/lucas/nosys_libs/raw/branch/main/app/start.py";
const link = document.createElement('a');
link.href = url;
link.download = url.split('/').pop();