This commit is contained in:
punkfairie 2025-02-22 17:55:26 -08:00
parent 94010a4f19
commit cd899127a1
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
22 changed files with 57 additions and 41 deletions

View file

@ -16,8 +16,8 @@
/*noinspection CssInvalidAtRule*/ /*noinspection CssInvalidAtRule*/
@theme { @theme {
--font-sans: Figtree, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', --font-sans: Figtree, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
} }
/* /*
@ -38,15 +38,18 @@ @layer base {
} }
html { html {
background-image: url("../images/set/bflyBRDR.gif"); background-image: url("../images/bg.jpg");
background-repeat: repeat-y; background-size: cover;
background-color: #e1c0b9; background-color: #e1c0b9;
} }
body { body {
margin-left: 175px; margin-left: 20px;
margin-top: 20px;
} }
}
@layer components {
.button { .button {
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;

BIN
resources/images/bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 888 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View file

@ -1,5 +0,0 @@
<img
src="{{ Vite::asset('resources/images/set/bflyBUT1.gif') }}"
alt="Home"
{{ $attributes }}
/>

View file

@ -2,9 +2,11 @@
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
@include('layouts.head') @include('layouts.head')
<body class="max-w-[600px]"> <body>
@include('layouts.navigation') <main class="max-w-[600px]">
{{ $slot }}
{{ $slot }} @include('layouts.navigation')
</main>
</body> </body>
</html> </html>

View file

@ -1,33 +1,49 @@
<nav> {{-- <nav> --}}
<!-- Primary Navigation Menu --> {{-- <!-- Primary Navigation Menu --> --}}
<div> {{-- <div> --}}
<!-- Logo --> {{-- <!-- Logo --> --}}
<a href="/" class="no-underline"> {{-- <a href="/" class="button">Home</a> --}}
<x-home-btn />
</a>
<div class="py-2"> {{-- <div class="py-2"> --}}
@auth {{-- @auth --}}
<a class="button" href="{{ route('admin') }}">Admin</a> {{-- <a class="button" href="{{ route('admin') }}">Admin</a> --}}
<!-- Profile --> {{-- <!-- Profile --> --}}
<a class="button" href="{{ route('profile.edit') }}"> {{-- <a class="button" href="{{ route('profile.edit') }}"> --}}
{{ Auth::user()->name }} {{-- {{ Auth::user()->name }} --}}
</a> {{-- </a> --}}
<!-- Log Out --> {{-- <!-- Log Out --> --}}
<form {{-- <form --}}
class="inline-block" {{-- class="inline-block" --}}
method="POST" {{-- method="POST" --}}
action="{{ route('logout') }}" {{-- action="{{ route('logout') }}" --}}
> {{-- > --}}
@csrf {{-- @csrf --}}
<button>Log Out</button> {{-- <button>Log Out</button> --}}
</form> {{-- </form> --}}
@else {{-- @else --}}
<a href="{{ route('login') }}">Login</a> {{-- <a href="{{ route('login') }}">Login</a> --}}
@endauth {{-- @endauth --}}
</div> {{-- </div> --}}
</div> {{-- </div> --}}
{{-- </nav> --}}
<nav
class="window fixed bottom-0 left-0 box-border flex h-[30px] w-screen justify-between"
>
<button class="min-w-0 p-1 text-[12px] leading-0 font-bold">
<img
src="{{ Vite::asset('resources/images/logo.svg') }}"
alt="Windows Logo"
class="relative top-[1px] w-4"
/>
Start
</button>
<div
class="status-bar-field max-w-fit px-2 leading-[20px]"
x-data
x-text="new Date().toLocaleTimeString(undefined, { timeStyle: 'short' })"
></div>
</nav> </nav>