Compare commits

..

1 commit

Author SHA1 Message Date
bda24e46ce Bump forgejo-release to v2
Some checks failed
Run Tests on Code / test (push) Failing after 24s
Build Docker Image on Pull Request / test (pull_request) Failing after 2m16s
2024-08-06 12:30:27 +00:00
4 changed files with 17 additions and 21 deletions

View file

@ -5,7 +5,7 @@
import Header from './Header.svelte'; import Header from './Header.svelte';
import { socketStore } from '$lib/stores/socketStore'; import { socketStore } from '$lib/stores/socketStore';
import { beforeNavigate } from '$app/navigation'; import { beforeNavigate } from '$app/navigation';
import Footer from './Footer.svelte'; import Footer from "./Footer.svelte";
$effect(() => { $effect(() => {
beforeNavigate((navigation) => { beforeNavigate((navigation) => {
@ -22,7 +22,7 @@
<Header /> <Header />
<div class="h-full pb-8 pt-16"> <div class="h-full pt-16 pb-8">
<slot /> <slot />
</div> </div>

View file

@ -9,10 +9,8 @@
<meta name="description" content="Landing Page for neshweb.net" /> <meta name="description" content="Landing Page for neshweb.net" />
</svelte:head> </svelte:head>
<div <div class="flex max-h-full flex-row flex-wrap justify-center justify-around gap-4 overflow-auto p-8">
class="flex max-h-full flex-row flex-wrap justify-center justify-around gap-4 overflow-auto p-8" <div class="flex flex-1 flex-col w-[22rem] items-center">
>
<div class="flex w-[22rem] flex-1 flex-col items-center">
<div class="flex flex-col gap-y-2 rounded-xl border bg-black/55 p-4 backdrop-blur-sm"> <div class="flex flex-col gap-y-2 rounded-xl border bg-black/55 p-4 backdrop-blur-sm">
<h1 class="text-center text-2xl">Home Page</h1> <h1 class="text-center text-2xl">Home Page</h1>
<p> <p>

View file

@ -2,14 +2,12 @@
import { version } from '$app/environment'; import { version } from '$app/environment';
</script> </script>
<div <div class="absolute bottom-0 flex z-50 h-8 w-full flex-row items-center gap-3 border-t bg-black/40 backdrop-blur-sm">
class="absolute bottom-0 z-50 flex h-8 w-full flex-row items-center gap-3 border-t bg-black/40 backdrop-blur-sm"
>
<p class="px-4"> <p class="px-4">
Version: Version:
<a <a
href="https://forgejo.neshweb.net/Neshweb-Sites/main-site/releases/tag/{version}" href="https://forgejo.neshweb.net/Neshweb-Sites/main-site/releases/tag/{version}"
class="text-secondary hover:underline" class="hover:underline text-secondary"
> >
{version} {version}
</a> </a>

View file

@ -6,7 +6,7 @@
</script> </script>
<ul <ul
class="absolute z-50 flex h-16 w-full flex-row items-center gap-3 overflow-x-auto border-b bg-black/40 backdrop-blur-sm" class="absolute z-50 flex h-16 w-full flex-row overflow-x-auto items-center gap-3 border-b bg-black/40 backdrop-blur-sm"
> >
<li class="ml-auto"> <li class="ml-auto">
<Button <Button