import 'package:flutter/material.dart'; class NotFoundPage extends StatelessWidget { const NotFoundPage({super.key}); @override Widget build(BuildContext context) { return const Scaffold( body: Center( child: Text( '404 Not Found', style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold), )), ); } }