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>
13 lines
415 B
Text
13 lines
415 B
Text
import * as React from 'react';
|
|
import { GapMode } from './utils';
|
|
export interface BodyScroll {
|
|
noRelative?: boolean;
|
|
noImportant?: boolean;
|
|
gapMode?: GapMode;
|
|
}
|
|
export declare const lockAttribute = "data-scroll-locked";
|
|
export declare const useLockAttribute: () => void;
|
|
/**
|
|
* Removes page scrollbar and blocks page scroll when mounted
|
|
*/
|
|
export declare const RemoveScrollBar: React.FC<BodyScroll>;
|