You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang=eng>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
|
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.css" rel="stylesheet" />
|
|
|
|
|
<title>Rauru Game Explorer</title>
|
|
|
|
|
<livewire:styles>
|
|
|
|
|
|
|
|
|
|
@vite('resources/js/app.js')
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app">
|
|
|
|
|
<div class="flex flex-col w-screen h-screen main-container">
|
|
|
|
|
<x-header></x-header>
|
|
|
|
|
<x-sidebar></x-sidebar>
|
|
|
|
|
<main id="main" class="flex flex-col flex-grow p-4 bg-white main dark:bg-gray-700">
|
|
|
|
|
<div class="container flex flex-col items-center justify-center h-full px-6 mx-auto menu-container">
|
|
|
|
|
<div class="grid justify-center grid-cols-2 gap-8 mt-4 xl:mt-12 xl:gap-12 sm:grid-cols-3 xl:grid-cols-3 lg:grid-cols-3">
|
|
|
|
|
<!-- F<>r neue Men<65> Eintr<74>ge hier neue menu_tile Components hinzuf<75>gen -->
|
|
|
|
|
<x-menu_tile :icon="'fa-solid fa-gamepad'" :route="'/games'" :text="'Games'"></x-menu_tile>
|
|
|
|
|
<x-menu_tile :icon="'fa-brands fa-playstation'" :route="'/platforms'" :text="'Platforms'"></x-menu_tile>
|
|
|
|
|
<x-menu_tile :icon="'fa-brands fa-docker'" :route="'/services'" :text="'Services'"></x-menu_tile>
|
|
|
|
|
<x-menu_tile :icon="'fa-brands fa-git-alt'" :route="'/projects'" :text="'Dev-Projects'"></x-menu_tile>
|
|
|
|
|
<x-menu_tile :icon="'fa-solid fa-trophy'" :route="'/achievments'" :text="'Achievements'"></x-menu_tile>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<x-footer></x-footer>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<livewire:scripts>
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|