import 'package:flutter/material.dart'; class OverviewPage extends StatelessWidget { const OverviewPage({super.key}); static const String routeName = '/'; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Recipe Journal'), ), floatingActionButton: FloatingActionButton.extended( onPressed: () {}, label: Text('Create New'), ), ); } }