chore: make client component for custom error page

This commit is contained in:
yoosangwook 2024-08-01 11:27:15 +09:00
parent e3544879f4
commit e26c751e73
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
'use client'
export default function ServerError() { export default function ServerError() {
return ( return (
<section className="bg-white dark:bg-gray-900"> <section className="bg-white dark:bg-gray-900">

View File

@ -1,3 +1,5 @@
'use client'
import Link from 'next/link' import Link from 'next/link'
export default function NotFound() { export default function NotFound() {