first commit
This commit is contained in:
16
app/[locale]/me/page.tsx
Normal file
16
app/[locale]/me/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { Metadata } from "next"
|
||||
import ClientProfilePage from "./client-page"
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "My Profile | E-Commerce",
|
||||
description: "Manage your profile settings",
|
||||
robots: "noindex, nofollow", // Private page
|
||||
}
|
||||
|
||||
export default function ProfilePage({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ locale: string }>
|
||||
}) {
|
||||
return <ClientProfilePage params={params} />
|
||||
}
|
||||
Reference in New Issue
Block a user