Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/48f044976bf81f9ae70999dde39c76f3dfa8f3a506d128423edb32db0e814c3e2c1dcbe4c890d41a9adbdd0d020565c3a7ff742be96920b7e255f1e775e1cd
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

13 lines
330 B
Text

import React, { type HTMLAttributes } from "react";
/**
* Render the footer of the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Footer(props: HTMLAttributes<HTMLDivElement>) {
return <div {...props} />;
}
export type FooterProps = Parameters<typeof Footer>[0];