Push new product page to sidebar

This commit is contained in:
zontreck 2025-04-01 03:18:24 -07:00
parent 7a5ecf6f36
commit d02d77589f
2 changed files with 18 additions and 7 deletions

View file

@ -80,7 +80,7 @@ class HomePageState extends State<HomePage> {
children: [
Text("Zontreck.com"),
Text(""),
Text("Copyright 2024"),
Text("Copyright 2025"),
Text("Piccari Creations")
],
)),
@ -109,6 +109,13 @@ class HomePageState extends State<HomePage> {
await launchUrl(
Uri(host: "ci.zontreck.com", port: 443, scheme: "https"));
},
),
ListTile(
title: Text("S H I T B O T"),
subtitle: Text("ShitBot Promotional Materials"),
onTap: () async {
await Navigator.pushNamed(context, "/shitbot");
},
)
],
),