|
|
|
@ -1,22 +1,25 @@
|
|
|
|
|
<script>
|
|
|
|
|
// @ts-nocheck
|
|
|
|
|
import ThemeSwitcher from "$lib/ThemeSwitcher.svelte";
|
|
|
|
|
import ThemeSwitcher from '$lib/ThemeSwitcher.svelte';
|
|
|
|
|
|
|
|
|
|
import Button from "./Button.svelte";
|
|
|
|
|
import Dropdown from "./Dropdown.svelte";
|
|
|
|
|
import DropdownButton from "./DropdownButton.svelte";
|
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
|
import Dropdown from './Dropdown.svelte';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<a class="flex h-16 hover:bg-white hover:bg-opacity-20 duration-300" href="/">
|
|
|
|
|
<!-- <Button url="/" text="<img src='/bart.png' />" type="title" /> -->
|
|
|
|
|
<img src="/bart.png" alt="Logo" class="h-full px-5 py-3 transform hover:scale-95 duration-300" />
|
|
|
|
|
<img
|
|
|
|
|
src="/bart.png"
|
|
|
|
|
alt="Logo"
|
|
|
|
|
class="h-full px-5 py-3 transform hover:scale-95 duration-300"
|
|
|
|
|
/>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="hidden lg:flex h-16">
|
|
|
|
|
<Button url="/" text="Home" />
|
|
|
|
|
<Button disabled="true" url="/blog" text="Blog" />
|
|
|
|
|
<Button disabled="true" url="/portfolio" text="Portfolio" />
|
|
|
|
|
<Button disabled="true" url="/experience" text="Experience" />
|
|
|
|
|
<Button disabled="true" url="/esu" text="ESU" />
|
|
|
|
|
<Button disabled="true" url="/furry" text="Furry" />
|
|
|
|
|
</div>
|
|
|
|
@ -27,11 +30,11 @@
|
|
|
|
|
<div class="flex lg:hidden h-16">
|
|
|
|
|
<Dropdown text="🍔">
|
|
|
|
|
<Button url="/" text="Home" />
|
|
|
|
|
<Button disabled="true" url="/blog" text="Blog" />
|
|
|
|
|
<Button disabled="true" url="/portfolio" text="Portfolio" />
|
|
|
|
|
<Button disabled="true" url="/experience" text="Experience" />
|
|
|
|
|
<Button disabled="true" url="/esu" text="ESU" />
|
|
|
|
|
<Button disabled="true" url="/furry" text="Furry" />
|
|
|
|
|
<ThemeSwitcher />
|
|
|
|
|
</Dropdown>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|