Skip to content

Commit

Permalink
start: work on settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mnenie committed Jul 12, 2024
1 parent 7cc137f commit e12c74f
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion src/pages/Settings.vue
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
<template>settings</template>
<script setup lang="ts">
import { useHead } from '@unhead/vue';
useHead({
title: 'Jenda | Settings'
});
</script>

<template>
<div v-once :class="$style.settings">
<h4 class="heading-4">Settings</h4>
<p class="text-sm" style="color: var(--zinc-500)">
Manage your account settings and set some preferences.
</p>
</div>
<div :class="$style.theme">
<p class="text-sm" style="font-weight: 500;">Theme</p>
<span class="text-xs" style="color: var(--zinc-500);">Select the theme for the dashboard.</span>
</div>
</template>

<style module lang="scss">
.settings {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid var(--zinc-200);
}
</style>

0 comments on commit e12c74f

Please sign in to comment.