Compare commits

..

No commits in common. "a90d18cad68fdc2402c7e929a30f9c74529b118d" and "086654a1ecdb2d724e7934d113c21dbe9b866195" have entirely different histories.

2 changed files with 2 additions and 30 deletions

View File

@ -7,10 +7,6 @@
import UserIcon from '$lib/icons/UserIcon.svelte'; import UserIcon from '$lib/icons/UserIcon.svelte';
const paths = [ const paths = [
{
Path: "/",
Name: "Home",
},
{ {
Path: "/card", Path: "/card",
Name: "Cards", Name: "Cards",
@ -60,9 +56,9 @@
class="bg-gray-800 text-white p-2 rounded-md border border-gray-700" class="bg-gray-800 text-white p-2 rounded-md border border-gray-700"
/> />
</label> </label>
<a href="/settings" class="bg-gray-700 text-white p-2 rounded-full"> <button class="bg-gray-700 text-white p-2 rounded-full">
<UserIcon width="1.5em" height="1.5em" color="#f0f0f0"/> <UserIcon width="1.5em" height="1.5em" color="#f0f0f0"/>
</a> </button>
</div> </div>
</nav> </nav>
{/if} {/if}

View File

@ -1,24 +0,0 @@
<script>
const settingTypes = [
{
name: "Manage Type Filters",
path: "/settings/type",
},
];
</script>
<div class="container mx-auto my-8 p-6 bg-gray-100 rounded-lg shadow-lg">
<h1 class="text-2xl font-bold mb-4 text-center">User settings</h1>
<div class="flex flex-col space-y-6">
{#each settingTypes as path}
<div class="flex items-center justify-center">
<a
href={path.path}
class="p-4 px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600"
>
{path.name}
</a>
</div>
{/each}
</div>
</div>