hensei-web/app/[locale]/unauthorized/page.tsx
Justin Edmund d77bc3ff98 Fix ESLint errors: Escape apostrophes in JSX text
- Fixed unescaped apostrophes in error.tsx, not-found.tsx, and unauthorized/page.tsx
- These ESLint errors were causing the production build to fail on Railway
- Changed apostrophes to HTML entity ' in JSX text content
2025-09-03 23:20:23 -07:00

23 lines
No EOL
624 B
TypeScript

import { Metadata } from 'next'
import Link from 'next/link'
export const metadata: Metadata = {
title: 'Unauthorized / granblue.team',
description: "You don't have permission to perform that action"
}
export default function UnauthorizedPage() {
return (
<div className="error-container">
<div className="error-content">
<h1>Unauthorized</h1>
<p>You don&apos;t have permission to perform that action</p>
<div className="error-actions">
<Link href="/teams" className="button primary">
Browse teams
</Link>
</div>
</div>
</div>
)
}