mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
22 lines
495 B
TypeScript
22 lines
495 B
TypeScript
import {GearFine, Palette, User} from "@phosphor-icons/react";
|
|
import withSideMenu from "Frontend/components/general/withSideMenu";
|
|
|
|
const menuItems = [
|
|
{
|
|
title: "My Profile",
|
|
url: "profile",
|
|
icon: <User/>
|
|
},
|
|
{
|
|
title: "Appearance",
|
|
url: "appearance",
|
|
icon: <Palette/>
|
|
},
|
|
{
|
|
title: "Manage account",
|
|
url: "account-management",
|
|
icon: <GearFine/>
|
|
}
|
|
]
|
|
|
|
export const ProfileView = withSideMenu(menuItems); |