Add initial project structure and configuration files

This commit is contained in:
ImBenji
2025-10-13 03:45:20 +01:00
parent 5cbf9b02fb
commit f1e4cc5058
135 changed files with 5656 additions and 0 deletions

35
lib/pages/home.dart Normal file
View File

@@ -0,0 +1,35 @@
import 'package:capstone_project/widgets/navbar.dart';
import 'package:go_router/go_router.dart';
import 'package:shadcn_flutter/shadcn_flutter.dart';
class HomePage extends StatelessWidget {
static GoRoute route = GoRoute(
path: "/",
builder: (context, state) => HomePage()
);
@override
Widget build(BuildContext context) {
// TODO: implement build
return Scaffold(
headers: [
AppBar()
],
footers: [
ProjNavBar(
currentPage: "home",
)
],
child: Column(
children: [
],
),
);
}
}