diff --git a/apps/web/app/(content)/privacy/layout.tsx b/apps/web/app/(content)/privacy/layout.tsx
index ed9dcbc1f..d094ff742 100644
--- a/apps/web/app/(content)/privacy/layout.tsx
+++ b/apps/web/app/(content)/privacy/layout.tsx
@@ -1,5 +1,6 @@
import { type Metadata } from 'next'
import { type ReactNode } from 'react'
+import SimpleTitle from '@/components/simple-title'
import { title as siteName, twitterAccount } from '@/lib/constants'
export const metadata = {
@@ -25,6 +26,9 @@ type Props = {
export default function PrivacyLayout({ children }: Props) {
return (
-
{children}
+
+ プライバシーポリシー
+ {children}
+
)
}
diff --git a/apps/web/app/_components/mobile-menu.tsx b/apps/web/app/_components/mobile-menu.tsx
index 6f7ea42bd..abc4faa1a 100644
--- a/apps/web/app/_components/mobile-menu.tsx
+++ b/apps/web/app/_components/mobile-menu.tsx
@@ -9,12 +9,22 @@ import {
DialogTrigger
} from '@radix-ui/react-dialog'
import Link from 'next/link'
+import { twMerge } from 'tailwind-merge'
import Logo from '@/components/logo.svg'
-export default function MobileMenu() {
+type Props = {
+ className?: string
+}
+
+export default function MobileMenu({ className }: Props) {
return (