Rocky_Mountain_Vending/.pnpm-store/v10/files/91/724150d52efc0b66ee7e666e7cf05d4073d26715b00c497f6c85108a22fff2de70903969703e0fa70e56c0d9d9b601ee0e15040a270b796558375dfb6ee34f
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

8 lines
224 B
Text

import { Attachment } from '../attachment';
export type FeedbackFormData = {
name: string;
email: string;
message: string;
attachments: Attachment[] | undefined;
};
//# sourceMappingURL=form.d.ts.map