17 lines
436 B
TypeScript
17 lines
436 B
TypeScript
import type { Metadata } from "next";
|
|
import { I18nProvider } from "@/hooks/useI18n";
|
|
import { AccountEntry } from "@/components/account/AccountEntry";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "PolyWeather | Account Center",
|
|
description: "PolyWeather account center for identity and entitlement status.",
|
|
};
|
|
|
|
export default function AccountPage() {
|
|
return (
|
|
<I18nProvider>
|
|
<AccountEntry />
|
|
</I18nProvider>
|
|
);
|
|
}
|