- Move authenticated home page from /[locale] to /[locale]/home - Move login page from /[locale]/login to /[locale] (new landing page) - Move all restricted pages (bill, location, year-month, print, account) under /[locale]/home - Simplify middleware to protect all routes under /home instead of using publicPages array - Update auth config: change signIn page from /login to / - Update SignInButton callback URL to redirect to /home after login - Update all internal links throughout the application to reflect new structure - Update server action redirects in navigationActions.ts - Public share routes (/share/*) remain unchanged 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
573 B
TypeScript
20 lines
573 B
TypeScript
"use client";
|
|
|
|
import { FC } from 'react';
|
|
import LogoutIcon from "@mui/icons-material/Logout";
|
|
import { signOut } from 'next-auth/react';
|
|
import { useLocale, useTranslations } from 'next-intl';
|
|
import { Button } from '@/app/ui/button';
|
|
|
|
export const LogoutButton: FC = () => {
|
|
const t = useTranslations('account-page');
|
|
const locale = useLocale();
|
|
|
|
const handleLogout = () => {
|
|
signOut({ callbackUrl: `/${locale}/login` });
|
|
};
|
|
|
|
return (
|
|
<Button className='btn' onClick={handleLogout}><LogoutIcon /> {t('logout-button')}</Button>
|
|
)
|
|
} |