feat: add initial rendering of Account page data

This commit is contained in:
Arvid Norlin
2024-04-18 12:48:57 +02:00
parent 1543065d27
commit ed2cc59a87
7 changed files with 121 additions and 29 deletions

View File

@@ -1,8 +1,9 @@
import type { User } from "@/types/user"
import { Shortcut } from "@/types/requests/myPages/accountpage"
import { PageLink } from "@/types/requests/utils/pageLink"
import { ReactNode } from "react"
export type ShortcutsProps = {
shortcuts: User["shortcuts"]
shortcuts: { url: string; title: string }[]
title: string | ReactNode
subtitle?: string
}