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>
16 lines
911 B
Text
16 lines
911 B
Text
import type { ComponentProps } from 'react';
|
|
export declare const learnMoreLink: {
|
|
readonly pages: {
|
|
readonly static: "https://nextjs.org/docs/pages/building-your-application/rendering/static-site-generation";
|
|
readonly dynamic: "https://nextjs.org/docs/pages/building-your-application/rendering/server-side-rendering";
|
|
};
|
|
readonly app: {
|
|
readonly static: "https://nextjs.org/docs/app/building-your-application/rendering/server-components#static-rendering-default";
|
|
readonly dynamic: "https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-rendering";
|
|
};
|
|
};
|
|
export declare function RouteInfoBody({ routerType, isStaticRoute, ...props }: {
|
|
routerType: 'pages' | 'app';
|
|
isStaticRoute: boolean;
|
|
} & ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
export declare const DEV_TOOLS_INFO_ROUTE_INFO_STYLES = "";
|