import { _ } from "@/lib/translation" import { CalendarIcon, EmailIcon, HouseIcon, PhoneIcon, } from "@/components/Icons" import Container from "./Container" import Field from "../Field" import styles from "./profile.module.css" import type { ProfileProps } from "@/types/components/myPages/myProfile/profile" export default function Profile(props: ProfileProps) { return (
SE {_("Country")} Sweden {_("Date of Birth")} 27/05/1977 {_("Email")} f*********@g****.com {_("Phone number")} +46 ******00 {_("Address")} T*************** {_("City/State")} S******* {_("Zip code")} 1****
) }