mirror of
https://github.com/beilunyang/moemail.git
synced 2026-07-03 21:31:42 +08:00
34 lines
901 B
TypeScript
34 lines
901 B
TypeScript
import { Header } from "@/components/layout/header"
|
|
import { ProfileCard } from "@/components/profile/profile-card"
|
|
import { auth } from "@/lib/auth"
|
|
import { redirect } from "next/navigation"
|
|
import type { Locale } from "@/i18n/config"
|
|
|
|
export const runtime = "edge"
|
|
|
|
export default async function ProfilePage({
|
|
params,
|
|
}: {
|
|
params: Promise<{ locale: string }>
|
|
}) {
|
|
const { locale: localeFromParams } = await params
|
|
const locale = localeFromParams as Locale
|
|
const session = await auth()
|
|
|
|
if (!session?.user) {
|
|
redirect(`/${locale}`)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100 dark:from-gray-900 dark:to-gray-800">
|
|
<div className="container mx-auto px-4 lg:px-8 max-w-[1600px]">
|
|
<Header />
|
|
<main className="pt-20 pb-5">
|
|
<ProfileCard user={session.user} />
|
|
</main>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|