- 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>
30 lines
1.2 KiB
TypeScript
30 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { signIn } from "next-auth/react"
|
|
import { useTranslations } from "next-intl";
|
|
import Image from "next/image";
|
|
|
|
const providerLogo = (provider: {id:string, name:string}) => {
|
|
switch(provider.id) {
|
|
case "google": return "https://authjs.dev/img/providers/google.svg";
|
|
case "facebook": return "https://authjs.dev/img/providers/facebook.svg";
|
|
case "github": return "https://authjs.dev/img/providers/github.svg";
|
|
case "twitter": return "https://authjs.dev/img/providers/twitter.svg";
|
|
case "email": return "https://authjs.dev/img/providers/email.svg";
|
|
case "linkedin": return "https://authjs.dev/img/providers/linkedin.svg";
|
|
default: return "https://authjs.dev/img/providers/google.svg";
|
|
}
|
|
}
|
|
|
|
export const SignInButton:React.FC<{ provider: {id:string, name:string} }> = ({ provider }) => {
|
|
|
|
const t = useTranslations("login-page");
|
|
|
|
return(
|
|
<button className="btn btn-neutral m-1" onClick={() => signIn(provider.id, { callbackUrl:"/home" }) }>
|
|
<Image alt="Provider Logo" loading="lazy" height="24" width="24" id="provider-logo-dark" src={providerLogo(provider)} />
|
|
<span>
|
|
{t("sign-in-button")} {provider.name}</span>
|
|
</button>
|
|
);
|
|
} |