import 'package:flutter/material.dart'; class HomeContent extends StatelessWidget { const HomeContent({super.key}); @override Widget build(BuildContext context) { return Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon(Icons.home, size: 80, color: Colors.blue), SizedBox(height: 20), Text( 'Bienvenue sur Travel Mate', style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold), ), SizedBox(height: 10), Text('Page d\'accueil'), ], ), ); } }