Rocky_Mountain_Vending/.pnpm-store/v10/files/22/1c8d04e4283630eeb12ac807f61c799f37220aaf1c0198f8b53b31863adfcf5917a91b9ca54b95c10677b2a47a868e9fe47402d05da7701022a1b02094f99e
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

15 lines
616 B
Text

import type { CacheIndicatorState } from '../../cache-indicator';
export declare enum Status {
None = "none",
Rendering = "rendering",
Compiling = "compiling",
Prerendering = "prerendering",
CacheBypassing = "cache-bypassing"
}
export declare function getCurrentStatus(buildingIndicator: boolean, renderingIndicator: boolean, cacheIndicator: CacheIndicatorState): Status;
interface StatusIndicatorProps {
status: Status;
onClick?: () => void;
}
export declare function StatusIndicator({ status, onClick }: StatusIndicatorProps): import("react/jsx-runtime").JSX.Element | null;
export {};