diff --git a/conf.nix b/conf.nix index cc3beb9e..1224b672 100644 --- a/conf.nix +++ b/conf.nix @@ -17,5 +17,6 @@ rec { lib.font-awesome = { enable = true; version = "4.7.0"; }; lib.googlefonts = [ "Nunito+Sans:400,900" ]; lib.jquery = { enable = true; version = "3.1.1"; }; + lib.mathjax = { enable = true; version = "2.7.5"; }; }; } diff --git a/content/ico/details.md b/content/ico/details.md new file mode 100644 index 00000000..723bc886 --- /dev/null +++ b/content/ico/details.md @@ -0,0 +1,161 @@ +
+
+
+
+
+

Token Details

+
+
+
+
+

+ Currency name: LUCEO +

+

+ Currency ticker symbol: CEO +

+

+ Currency type: Utility coin used in Fractalide marketplace (Fractalmarket). +

+

+ Total supply: 45 Billion CEO +

+

+ Amount for sale: 850 Million CEO +

+

+ Sales target: USD $20 Million +

+

+ Private sale duration: 41 epochs (~6.5 months) +

+
+
+

+ Price: Starting at 75% discount at first epoch to 0% discount at last epoch 1 ADA buys 1 LUCEO. +

+

+ $$p = x \cdot 0.01 \cdot 100 - d + {e \over (n - 1)} \cdot d$$ +

+

+ x = exchange rate of 1 ADA in final epoch +
+ d = initial discount of 75% +
+ n = 41 epochs to complete presale +
+ e = epoch to query for ADA price (p) +
+ p = ADA price at queried epoch (e) +

+
+
+ +
+
+
+
+
+
+
+
+

If you wish to participate in the ICO please agree to these points and solve a small mathematical problem.

+
+
+
+
+ +
+
+

+ I agree Fractalide won't issue a presale private key to me and that my ADA private key will be the private key on the new LUCEO network when it's launched. +

+
+
+
+
+ +
+
+

+ I agree that if I delete the ADA private key used to participate in the LUCEO presale I will not be able to claim my LUCEO coin. +

+
+
+
+
+ +
+
+

+ I agree that my ADA public address will be included in the new LUCEO genesis block only if a transaction from my ADA address to the ADA presale address is found on the ADA blockchain during specific epochs. +

+
+
+
+
+ +
+
+

+ I agree that I will need to import my ADA private key to access my LUCEO coin when the LUCEO mainnet is launched (Q1~Q2 2019). +

+
+
+
+
+ +
+
+

+ I agree NOT to send ADA from an exchange or any other firm, because I do not control that ADA private key as that firm holds my ADA on my behalf. The exchange/firm will then be credited with my LUCEO and I will never be able to claim my LUCEO in this case. +

+
+
+
+
+ +
+
+

+ I agree I will only send ADA from an account I own and control the private key to. +

+
+
+
+
+ +
+
+

+ I understand there is no KYC/AML requirement in this presale. +

+
+
+
+
+
+

What is the ADA price (p) of 1 LUCEO at epoch 38 (e)?

+ +
+
+
+
+
+ Please make sure that you've checked all the checkboxes above and answered the challenge question correctly before submitting this form to get the ADA presale address. +
+
+
+
+ +
+
+
+
+
+
+
diff --git a/site.nix b/site.nix index a3515837..d3c37885 100644 --- a/site.nix +++ b/site.nix @@ -275,6 +275,15 @@ rec { footer = ""; }; + ico_detail = rec { + title = ""; + section = "ico-details"; + path = "/ico/details/index.html"; + template = templates.page.full; + layout = templates.layout; + content = (lib.loadFile { file = ./content/ico/details.md; }).content; + }; + }; diff --git a/themes/fractalide-site/files/img/comic/coin-min.png b/themes/fractalide-site/files/img/comic/coin-min.png new file mode 100644 index 00000000..a91ab988 Binary files /dev/null and b/themes/fractalide-site/files/img/comic/coin-min.png differ diff --git a/themes/fractalide/files/css/custom.css b/themes/fractalide/files/css/custom.css index a2de7496..3803b6bd 100644 --- a/themes/fractalide/files/css/custom.css +++ b/themes/fractalide/files/css/custom.css @@ -818,14 +818,14 @@ section#hyperflow_modes > div.container > div.row:nth-child(2) { -/*************/ -/* Page: ICO */ -/*************/ +/*******************/ +/* Page: ICO Comic */ +/*******************/ section#ico h1.fractal_white { - background: url('/img/comic/sword-hero-min.png') no-repeat center; + background: url('/img/comic/sword-hero-min.png') no-repeat bottom; background-size: 437px 190px; - height: 190px; - padding-top: 75px; + height: 270px; + padding-top: 0px; margin-bottom: 80px; } @@ -898,3 +898,26 @@ section#ico h1.fractal_white { margin-bottom: -180px; } } + + + +/*********************/ +/* Page: ICO Details */ +/*********************/ +section#ico-details h1.fractal_white { + background: url('/img/comic/coin-min.png') no-repeat center; + background-size: 437px 190px; + height: 190px; + padding-top: 75px; + margin-bottom: 80px; +} + +.ico-details-background { + background-color: #a7ddec; + /*gradient to: #58b4cd;*/ +} + +.light_blue_box { + background-color: #E8F7FA; + padding: 30px; +}