Rocky_Mountain_Vending/.pnpm-store/v10/files/b9/1cf0271ec2b0a937e16c65ae39a287c5d9ca25764e7091dcc24151d4df768db07c9b9d4d7cc40dea64445f6f6632d34600c13879d3de14edd34dac6ff1f67e
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

27 lines
804 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import ManualAudit from '../../manual/manual-audit.js';
/**
* @fileoverview Manual A11y audit to check that landmark elements are used whenever possible.
*/
class UseLandmarks extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'use-landmarks',
description: 'Landmark elements (`<main>`, `<nav>`, etc.) are used to improve the keyboard navigation of the page for assistive technology. [Learn more about landmark elements](https://developer.chrome.com/docs/lighthouse/accessibility/use-landmarks/).',
title: 'HTML5 landmark elements are used to improve navigation',
}, super.partialMeta);
}
}
export default UseLandmarks;