23 lines
539 B
TypeScript
23 lines
539 B
TypeScript
import Button from "@/components/TempDesignSystem/Button";
|
|
import Link from "@/components/TempDesignSystem/Link";
|
|
|
|
import styles from "./view.module.css"
|
|
|
|
import type { LangParams, PageArgs } from "@/types/params";
|
|
|
|
export default function ProfileView({ params }: PageArgs<LangParams>) {
|
|
return (
|
|
<Button
|
|
asChild
|
|
bgcolor="quarternary"
|
|
className={styles.btn}
|
|
size="small"
|
|
weight="regular"
|
|
>
|
|
<Link href={`/${params.lang}/my-pages/profile/verify`}>
|
|
Edit
|
|
</Link>
|
|
</Button>
|
|
)
|
|
}
|