From fba34867634b315bc9c735cd3a7f8bb9c3422743 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 1 Mar 2023 00:02:13 +0200 Subject: [PATCH] Branding - Addex exported single logo as `branding/logo_single.png` Documentation - Added a README with the logo, title and tagline App - Restructured into a module name `renaissance` --- README.md | 14 ++++++++++++++ branding/logo_single.png | Bin 0 -> 2187 bytes source/app.d | 6 ------ source/renaissance/app.d | 6 ++++++ 4 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 README.md create mode 100644 branding/logo_single.png delete mode 100644 source/app.d create mode 100644 source/renaissance/app.d diff --git a/README.md b/README.md new file mode 100644 index 0000000..86b5583 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +

+ +

+ +
+ +

renaissance

+ +

The reference implementation

+ +--- + +
+
\ No newline at end of file diff --git a/branding/logo_single.png b/branding/logo_single.png new file mode 100644 index 0000000000000000000000000000000000000000..b143930c65a0cd48eaa868d391c9f2594f541736 GIT binary patch literal 2187 zcmeAS@N?(olHy`uVBq!ia0y~yVEh8Y9Be?5)7S2I0XZ$1&dvdz&dv%2Mfqu&IjIZ` z8WU?L+Ik#zkU1J3yi`e)UAv>?M8MoN&0QVAYn=qOrbI0aWuNT5e}Sj-q(_f5c8JOR ziCAN`!{YU;2U;9W@(Szp{JQjl9{r!>)Gfi^_xt0!dyn7ADwt^bnC?z$SQY7JB`Cgm zXQ<%^F2+QjB(cXr#$R`aXmOtZSjsOS|9+9p>ECzeFZMqf1#e0&WAG-CVHM1Ztpmn#C}@#j8~hNjjK#xNbjfC zHK)0r>z>P6dMxVu6Mdd%Tc@V3yUe59=&Ga0Drl6Yv6zWFFv>K@XGy00yNB{+e>96u zKGABPn9LZuVuFnQ5BWduuIc#r?eIKkap7;$ZFyyf1o4b(xxatk*fv|e;lJdLOSk@I zG0*s^viIIKC3lDaW(9?JuRXDSP{b}#bxGB^NX6cFVF1Iu^Dkx>9XOzSVfV9d*KQqu z$vk1oXMsm#F$061G6*wPEVVBK3bL1Y`ns||XOa=M=KWuC;xJH1vcxr_#5q4VH#M(> z!MP|ku_QG`p**uBL&4qCHz2%`PaJ4^vZsqDDW^Fw*S>OOWI`M?8TSK zVqU*)^JPYcdE0y#7@GJPIII{HUNAH)U=u7HA3OrqNerH@elF{r G5}E*@3|Er? literal 0 HcmV?d00001 diff --git a/source/app.d b/source/app.d deleted file mode 100644 index c3eec7f..0000000 --- a/source/app.d +++ /dev/null @@ -1,6 +0,0 @@ -import std.stdio; - -void main() -{ - writeln("Edit source/app.d to start your project."); -} diff --git a/source/renaissance/app.d b/source/renaissance/app.d new file mode 100644 index 0000000..6665aa6 --- /dev/null +++ b/source/renaissance/app.d @@ -0,0 +1,6 @@ +module renaissance.app; + +void main() +{ + +} \ No newline at end of file