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>
41 lines
985 B
TypeScript
41 lines
985 B
TypeScript
import { generateSEOMetadata, generateStructuredData } from '@/lib/seo';
|
|
import { TermsAndConditionsPage } from '@/components/terms-and-conditions-page';
|
|
import type { Metadata } from 'next';
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
return generateSEOMetadata({
|
|
title: 'Terms & Conditions | Rocky Mountain Vending',
|
|
description: 'Terms and Conditions for Rocky Mountain Vending',
|
|
robots: {
|
|
index: false,
|
|
follow: false,
|
|
},
|
|
});
|
|
}
|
|
|
|
export default function TermsAndConditions() {
|
|
const structuredData = generateStructuredData({
|
|
title: 'Terms & Conditions',
|
|
description: 'Terms and Conditions for Rocky Mountain Vending',
|
|
url: 'https://rockymountainvending.com/terms-and-conditions/',
|
|
type: 'WebPage',
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(structuredData) }}
|
|
/>
|
|
<TermsAndConditionsPage />
|
|
</>
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|