Rocky_Mountain_Vending/.pnpm-store/v10/files/94/08f1b6acf15c8302521ff36d483897a0d2a10978abf64f3ad905e6ce0071b6303cd633a14ffbda6f7db9373cbe8dc384a7cd6ac736d4b7a22903b7eb696620
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

14 lines
328 B
Text

export declare type GapMode = 'padding' | 'margin';
export interface GapOffset {
left: number;
top: number;
right: number;
gap: number;
}
export declare const zeroGap: {
left: number;
top: number;
right: number;
gap: number;
};
export declare const getGapWidth: (gapMode?: GapMode) => GapOffset;