Files
chorus-services/brand-assets/brand-style-guide-site/src/app/public-relations/page.tsx
tony e9d6e8465a feat: Restore and consolidate brand style guide site structure
Major updates and improvements across the site:

- Restored Motion page with comprehensive animation documentation including actual timing scales (200ms, 300ms, 500ms), easing functions, and real implementation examples
- Updated page layouts across all sections with consistent structure and improved visual hierarchy
- Enhanced Typography page with complete font families (Inter Tight, Exo, Inconsolata), proper scaling system, and do/don't examples
- Refined Logo page with improved layout, proper logo orientations, and enhanced download section
- Updated all section pages (Culture, Communications, Components, etc.) with consistent styling and layout patterns
- Added logo ring asset for 2D static version display
- Improved CSS with logo group styling and comprehensive accessibility color adaptations
- Enhanced Sidebar component with better logo positioning and navigation structure

Site now has consistent visual treatment across all pages while maintaining the sophisticated CHORUS brand aesthetic.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-25 22:17:00 +10:00

35 lines
1.3 KiB
TypeScript

export default function PublicRelationsPage() {
return (
<div className="py-chorus-xxl">
<section id="public-relations" className="pt-chorus-xxl">
<div className="mx-auto max-w-5xl px-chorus-lg mb-chorus-lg">
<header className="border-b border-nickel-200 pb-chorus-lg dark:border-mulberry-800">
<div className="flex items-center justify-between">
<div>
<h1 className="text-4xl font-bold tracking-tight text-carbon-950 dark:text-white">
Public Relations
</h1>
<p className="mt-chorus-sm text-lg text-carbon-600 dark:text-mulberry-200">
Brand guidelines for media communications and public messaging
</p>
</div>
</div>
</header>
<div className="mt-chorus-xl space-y-chorus-xl">
<h2 className="text-2xl font-semibold text-carbon-950 dark:text-white mb-chorus-lg">
Coming Soon
</h2>
<div className="prose prose-carbon dark:prose-invert max-w-none">
<p>
This section will contain guidelines for press releases, media kits,
and public communications materials.
</p>
</div>
</div>
</div>
</section>
</div>
);
}