diff --git a/app/components/navbar.tsx b/app/components/navbar.tsx
index b485cc6..13d6bc7 100644
--- a/app/components/navbar.tsx
+++ b/app/components/navbar.tsx
@@ -8,7 +8,7 @@ import {
} from '@heroicons/react/24/outline'
import Link from 'next/link'
import type { Navigation } from '../interfaces/navigation'
-import type { Themes } from '../interfaces/themes'
+import type { Theme } from '../interfaces/theme'
import { metadata } from '../layout'
export const navigation: Navigation[] = [
@@ -33,7 +33,7 @@ export const navigation: Navigation[] = [
},
] as const
-const themes: Themes[] = [
+const themes: Theme[] = [
{ name: 'デフォルト', value: 'light' },
{ name: 'ダーク', value: 'dark' },
{ name: 'カップケーキ', value: 'cupcake' },
@@ -77,8 +77,12 @@ export function Navbar() {
{metadata.title as string}
-