accessibility-complian…
Ensure the Normandy Park website meets WCAG 2.1 AA standards and provides an inclusive experience for all users, including those using assistive technologies.
Specialized agent for creating and maintaining modern web applications with React, TypeScript, and Bootstrap integration. Focuses on responsive design, component architecture, accessibility, and consistent user experience across all devices.
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Specialized agent for creating and maintaining modern web applications with React, TypeScript, and Bootstrap integration. Focuses on responsive design, component architecture, accessibility, and consistent user experience across all devices.
Specialized agent for creating and maintaining modern web applications with React, TypeScript, and Bootstrap integration. Focuses on responsive design, component architecture, accessibility, and consistent user experience across all devices.
src/components/
├── common/ # Shared UI components
│ ├── Button/
│ ├── Card/
│ ├── Modal/
│ └── Loading/
├── layout/ # Layout components
│ ├── Header/
│ ├── Footer/
│ ├── Navigation/
│ └── Container/
├── sections/ # Page section components
│ ├── Hero/
│ ├── Features/
│ ├── Gallery/
│ └── Statistics/
└── forms/ # Form components
├── Input/
├── Select/
└── Validation/'use client';
import React from 'react';
import { Container, Row, Col } from 'react-bootstrap';
import styles from './ComponentName.module.css';
interface ComponentNameProps {
title?: string;
children?: React.ReactNode;
className?: string;
variant?: 'primary' | 'secondary';
onAction?: () => void;
}
export const ComponentName: React.FC<ComponentNameProps> = ({
title,
children,
className = '',
variant = 'primary',
onAction
}) => {
return (
<section className={`${styles.container} ${className}`}>
<Container>
<Row>
<Col xs={12} md={8} lg={6}>
{title && <h2 className={styles.title}>{title}</h2>}
<div className={styles[variant]}>
{children}
</div>
{onAction && (
<button
onClick={onAction}
className={styles.actionButton}
aria-label="Perform action"
>
Action
</button>
)}
</Col>
</Row>
</Container>
</section>
);
};// Mobile: full width, Tablet: half, Desktop: quarter
<Container fluid>
<Row>
<Col xs={12} sm={6} lg={3}>
<Card />
</Col>
</Row>
</Container>
// Content + Sidebar Layout
<Row>
<Col xs={12} lg={8}>
<MainContent />
</Col>
<Col xs={12} lg={4} className="d-none d-lg-block">
<Sidebar />
</Col>
</Row>/* Base (Mobile) */
body {
font-size: 16px;
}
h1 {
font-size: 1.75rem;
}
/* Tablet */
@media (min-width: 768px) {
h1 {
font-size: 2rem;
}
}
/* Desktop */
@media (min-width: 1024px) {
h1 {
font-size: 2.5rem;
}
}// Desktop mega menu
@media (min-width: 1024px) {
.megaMenu {
display: block;
position: absolute;
}
}
// Tablet slide panel
@media (min-width: 768px) and (max-width: 1023px) {
.slidePanel {
transform: translateX(-100%);
&.active {
transform: translateX(0);
}
}
}
// Mobile overlay
@media (max-width: 767px) {
.mobileOverlay {
position: fixed;
width: 100%;
height: 100vh;
}
}import { Metadata } from 'next';
import { Container, Row, Col } from 'react-bootstrap';
import Hero from '@/components/sections/Hero';
import ContentSection from '@/components/sections/ContentSection';
export const metadata: Metadata = {
title: 'Page Title | Site Name',
description: 'Page description for SEO',
keywords: 'relevant, keywords, here'
};
export default function PageName() {
return (
<main>
<Hero
title="Page Title"
subtitle="Engaging subtitle"
ctaText="Take Action"
ctaLink="/action"
/>
<ContentSection>
<Container>
<Row>
<Col lg={8} className="mx-auto">
<h2>Section Title</h2>A comprehensive Claude Code plugin with 81 commands and 12 specialized AI agents for building modern, full-stack web applications with Next.js 15, Azure, Railway, Bootstrap, and TypeScript.
Repo: LarouexNonprofitConsulting/larouex-fullstack-plugin
Ensure the Normandy Park website meets WCAG 2.1 AA standards and provides an inclusive experience for all users, including those using assistive technologies.
Implement secure authentication and user account management for the My Account portal, handling user registration, login, session management, and protected…
Specialized agent for developing, deploying, and managing Azure serverless applications including Azure Functions, Azure Static Web Apps, and Azure Table…
Automated code review specialist for Next.js full-stack applications with platform-specific validation, ensuring code quality, security, performance, and…
Specialized agent for managing static and dynamic content across web applications. Handles content creation, SEO optimization, search implementation, metadata…
You are an Azure DevOps specialist with deep expertise in Azure deployment patterns, Azure Static Web Apps, Azure App Service deployment slots, Azure…