|
|
|
@ -1,11 +1,18 @@
|
|
|
|
<script setup lang="ts">
|
|
|
|
<script setup lang="ts">
|
|
|
|
import ToggleThemeButton from './ToggleThemeButton.vue'
|
|
|
|
import ToggleThemeButton from './ToggleThemeButton.vue'
|
|
|
|
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div className="flex justify-center border-b border-b-border px-2">
|
|
|
|
<div className="flex justify-center border-b border-b-border px-2">
|
|
|
|
<div
|
|
|
|
<div
|
|
|
|
className="flex w-full max-w-6xl items-center justify-between py-2">
|
|
|
|
className="flex w-full max-w-6xl items-center justify-between py-2">
|
|
|
|
<div className="cursor-pointer font-bold"> Shortener </div>
|
|
|
|
<div
|
|
|
|
|
|
|
|
className="cursor-pointer font-bold"
|
|
|
|
|
|
|
|
@click="() => router.push('home')">
|
|
|
|
|
|
|
|
Shortener
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<ToggleThemeButton />
|
|
|
|
<ToggleThemeButton />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|