35 lines
949 B
Vue
35 lines
949 B
Vue
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="css">
|
|
.header {
|
|
background: linear-gradient(237.74deg,#1199a5,#436da7 83%);
|
|
}
|
|
.logo-green {
|
|
color: rgb(162, 207, 0);
|
|
}
|
|
</style>
|
|
|
|
<template>
|
|
<div>
|
|
<header class="header">
|
|
<div class="flex gap-5 items-center justify-between md:justify-start max-w-screen-lg mx-auto font-thasadith">
|
|
<InertiaLink href="/dashboard">
|
|
<div
|
|
class="bg-white text-gray-800 pl-10 pr-5 py-2.5 text-4xl"
|
|
>Kamil<span class="logo-green">Craft</span></div>
|
|
</InertiaLink>
|
|
<nav>
|
|
<ul class="flex gap-3 items-center">
|
|
<li></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main class="max-w-screen-lg mx-2 lg:mx-auto mt-2 rounded-md bg-gray-50">
|
|
<slot />
|
|
</main>
|
|
</div>
|
|
</template>
|