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>
18 lines
No EOL
708 B
Text
18 lines
No EOL
708 B
Text
/**
|
|
* Next.js Metadata API
|
|
*
|
|
* This file defines the types used by Next.js to configure metadata
|
|
* through static exports or dynamic `generateMetadata` functions in Server Components.
|
|
*
|
|
* @remarks
|
|
* - The static `metadata` object and `generateMetadata` function are only supported in Server Components.
|
|
* - Do not export both a `metadata` object and a `generateMetadata` function from the same route segment.
|
|
* - You can still render metadata in client components directly as part of the component's JSX.
|
|
*
|
|
* @see https://nextjs.org/docs/app/api-reference/metadata
|
|
*/ "use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
//# sourceMappingURL=metadata-interface.js.map |