diff --git a/apps/videos/src/components/AppWindow.tsx b/apps/videos/src/components/AppWindow.tsx new file mode 100644 index 00000000..5a9bb02b --- /dev/null +++ b/apps/videos/src/components/AppWindow.tsx @@ -0,0 +1,89 @@ +import type React from "react"; + +const TRAFFIC_LIGHTS = [ + { color: "#ff5f57", border: "#e0443e" }, + { color: "#febc2e", border: "#dea123" }, + { color: "#28c840", border: "#1aab29" }, +]; + +export const AppWindow: React.FC<{ + children: React.ReactNode; + title?: string; + width: number; + height: number; + topBarColor?: string; + bodyColor?: string; + style?: React.CSSProperties; +}> = ({ + children, + title, + width, + height, + topBarColor = "#1e1e2e", + bodyColor = "#0d1117", + style, +}) => { + return ( +