From b2990afebe1068d0c568ae7145adf1e106d3bfbf Mon Sep 17 00:00:00 2001 From: Dante De Ruwe Date: Sat, 16 Nov 2024 00:37:45 +0100 Subject: [PATCH] Small tweaks --- src/Dotty.CLI/Program.cs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/Dotty.CLI/Program.cs b/src/Dotty.CLI/Program.cs index 793949e..48eb2ab 100644 --- a/src/Dotty.CLI/Program.cs +++ b/src/Dotty.CLI/Program.cs @@ -32,10 +32,15 @@ } Panel($""" - This talk is presented to you by {name}, a technical consultant, - software developer and public speaker passionate about .NET and fascinated - by software craftsmanship and architecture. + This talk is presented to you by {name}. + + [gray]Technical Consultant | Software Developer | Public Speaker[/] + + Passionate about .NET and fascinated by software craftsmanship and architecture. + + 🚀 [bold][cyan]dantederuwe.com[/][/] """); + }); group.AddCommand("yourself", () => { @@ -122,7 +127,7 @@ by software craftsmanship and architecture. """); }); - group.AddCommand("timestamp", (string format = "o") => { Panel(DateTimeOffset.UtcNow.ToString(format)); }); + group.AddCommand("timestamp", (string format = "o") => Panel(DateTimeOffset.UtcNow.ToString(format))); }); app.Run();