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: [ children: [
Text("Zontreck.com"), Text("Zontreck.com"),
Text(""), Text(""),
Text("Copyright 2024"), Text("Copyright 2025"),
Text("Piccari Creations") Text("Piccari Creations")
], ],
)), )),
@ -109,6 +109,13 @@ class HomePageState extends State<HomePage> {
await launchUrl( await launchUrl(
Uri(host: "ci.zontreck.com", port: 443, scheme: "https")); 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");
},
) )
], ],
), ),

View file

@ -13,15 +13,19 @@ class ShitBotProductPage extends StatelessWidget {
body: Padding( body: Padding(
padding: EdgeInsets.all(8), padding: EdgeInsets.all(8),
child: SingleChildScrollView( child: SingleChildScrollView(
child: Column( child: Center(
children: [ child: Column(
Center( children: [
child: Text( Text(
"APRIL FOOLS", "APRIL FOOLS",
style: TextStyle(fontSize: 64), style: TextStyle(fontSize: 64),
), ),
) Text(
], "If you fell for this joke, please contact Aria on Discord to receive a random free product. Thank you.",
style: TextStyle(fontSize: 24),
)
],
),
), ),
), ),
), ),