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>
29 lines
1,010 B
TypeScript
29 lines
1,010 B
TypeScript
import { generateSEOMetadata, generateStructuredData } from '@/lib/seo';
|
|
import { VendingMachinesPage } from '@/components/vending-machines-page';
|
|
import type { Metadata } from 'next';
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
return generateSEOMetadata({
|
|
title: 'Vending Machines | Rocky Mountain Vending',
|
|
description: 'Browse our selection of high-quality vending machines with advanced features and cashless payment options',
|
|
});
|
|
}
|
|
|
|
export default function VendingMachines() {
|
|
const structuredData = generateStructuredData({
|
|
title: 'Vending Machines',
|
|
description: 'Browse our selection of high-quality vending machines with advanced features and cashless payment options',
|
|
url: 'https://rockymountainvending.com/vending-machines/',
|
|
type: 'WebPage',
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(structuredData) }}
|
|
/>
|
|
<VendingMachinesPage />
|
|
</>
|
|
);
|
|
}
|