import 'package:flutter/material.dart'; class Co2DataPage extends StatelessWidget { const Co2DataPage({super.key}); @override Widget build(BuildContext context) { return const Center( child: Text( 'πŸƒ μ‹€μ‹œκ°„ CO2 농도 λ³€ν™” 좔이 뢄석', style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Colors.white60), ), ); } }