"use client" import { profile } from "@/constants/routes/myPages" import { _ } from "@/lib/translation" import { useProfileStore } from "@/stores/edit-profile" import Button from "@/components/TempDesignSystem/Button" import Link from "@/components/TempDesignSystem/Link" import type { LangParams, PageArgs } from "@/types/params" export default function EditProfile({ params }: PageArgs) { const isPending = useProfileStore((store) => store.pending) const isValid = useProfileStore((store) => store.valid) return ( <> ) }