Rocky_Mountain_Vending/.pnpm-store/v10/files/71/0ccf9b5359a03c1199f493a19bc54f8878fc65aacdd697fbfe6d1c27b07ba5caeff282b2288b88e32d3ef0af5fb56a2145e533f90f44cb1e9c144b17ce9b98
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

9 lines
304 B
Text

import React from 'react';
interface DevToolsHeaderProps {
title: React.ReactNode;
children?: React.ReactNode;
}
export declare function DevToolsHeader({ title, children, ref, }: DevToolsHeaderProps & {
ref?: React.Ref<HTMLDivElement>;
}): import("react/jsx-runtime").JSX.Element;
export {};