import Link from "next/link"; import React from "react"; const CloseIcon = () => ( ); const MaximizeIcon = () => ( ); const MinimizeIcon = () => ( ); interface WindowProps { title: string; children: React.ReactNode; className?: string; } export default function Window({ title, children, className = "", }: WindowProps) { return (