You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import ProfileTemplate from "@modules/account/templates/profile-template"
|
|
import { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Profile",
|
|
description: "View and edit your Medusa Store profile.",
|
|
}
|
|
|
|
export default function Profile() {
|
|
return <ProfileTemplate />
|
|
}
|