This commit is contained in:
parent
6ac9e68827
commit
a897e5bb03
4 changed files with 21 additions and 17 deletions
|
@ -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 pt-16 pb-8">
|
<div class="h-full pb-8 pt-16">
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,10 @@
|
||||||
<meta name="description" content="Landing Page for neshweb.net" />
|
<meta name="description" content="Landing Page for neshweb.net" />
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="flex max-h-full flex-row flex-wrap justify-center justify-around gap-4 overflow-auto p-8">
|
<div
|
||||||
<div class="flex flex-1 flex-col w-[22rem] items-center">
|
class="flex max-h-full flex-row flex-wrap justify-center justify-around gap-4 overflow-auto p-8"
|
||||||
|
>
|
||||||
|
<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>
|
||||||
|
|
|
@ -2,12 +2,14 @@
|
||||||
import { version } from '$app/environment';
|
import { version } from '$app/environment';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<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">
|
<div
|
||||||
|
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="hover:underline text-secondary"
|
class="text-secondary hover:underline"
|
||||||
>
|
>
|
||||||
{version}
|
{version}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ul
|
<ul
|
||||||
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"
|
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"
|
||||||
>
|
>
|
||||||
<li class="ml-auto">
|
<li class="ml-auto">
|
||||||
<Button
|
<Button
|
||||||
|
|
Loading…
Reference in a new issue