// Example: Home page with news and memes navigation import 'package:flutter/material.dart'; import 'package:news_memes_app/Screens/HomePage.dart'; class Example extends StatelessWidget { const Example({super.key}); @override Widget build(BuildContext context) { return const HomePage(); } }