Rocky_Mountain_Vending/.pnpm-store/v10/files/e0/7d92c6702b56199f7256cd3b6249741c885ccce27efe3d33e06cb64b60d06eab76c371c20a13331b98e8c7a502566fefbe335a1e2a27b4acfeeb38454938f8
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

7 lines
817 B
Text

import * as React from 'react';
type TerminalProps = {
content: string;
};
export declare const Terminal: React.FC<TerminalProps>;
export declare const TERMINAL_STYLES = "\n [data-nextjs-terminal]::selection,\n [data-nextjs-terminal] *::selection {\n background-color: var(--color-ansi-selection);\n }\n\n [data-nextjs-terminal] * {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n\n [data-nextjs-terminal] > div > p {\n display: flex;\n align-items: center;\n justify-content: space-between;\n cursor: pointer;\n margin: 0;\n }\n [data-nextjs-terminal] > div > p:hover {\n text-decoration: underline dotted;\n }\n [data-nextjs-terminal] div > pre {\n overflow: hidden;\n display: inline-block;\n }\n";
export {};