UNPKG

@hhoangphuoc/escape-room-cli

Version:

A CLI for playing AI-generated escape room games. Install globally with: npm install -g @hhoangphuoc/escape-room-cli

9 lines (8 loc) 691 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Box, Text } from 'ink'; import Gradient from 'ink-gradient'; import BigText from 'ink-big-text'; const Title = () => { return (_jsxs(Box, { flexDirection: "column", gap: 1, marginBottom: 1, marginTop: 1, children: [_jsx(Box, { justifyContent: "center", marginBottom: 1, paddingBottom: 1, children: _jsx(Gradient, { name: "vice", children: _jsx(BigText, { text: "AI Escape Room" }) }) }), _jsx(Box, { justifyContent: "center", marginTop: 2, paddingTop: 1, children: _jsx(Text, { color: "magenta", children: "[Type /instructions for instruction \u2022 / for available commands]" }) })] })); }; export default Title;