import 'package:flutter/material.dart'; /// Parlor - AI chat and automation hub. /// /// Placeholder page for future implementation. class ParlorPage extends StatelessWidget { const ParlorPage({super.key}); @override Widget build(BuildContext context) { return Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon( Icons.lightbulb, size: 64, color: Theme.of(context).colorScheme.outline, ), const SizedBox(height: 16), Text( 'Parlor', style: Theme.of(context).textTheme.headlineMedium, ), const SizedBox(height: 8), Text( 'AI chat and automation hub - coming soon', style: Theme.of(context).textTheme.bodyLarge?.copyWith( color: Theme.of(context).colorScheme.outline, ), ), ], ), ); } }