import Link from "next/link" import Image from "@/components/Image" import Title from "@/components/MyPages/Title" import styles from "./shortcuts.module.css" import type { ShortcutsProps } from "@/types/components/myPages/myPage/shortcuts" export default function Shortcuts({ shortcuts, title, subtitle, }: ShortcutsProps) { return (
{title}

{subtitle}

{shortcuts.map((shortcut) => ( {shortcut.title} Chevron Icon ))}
) }