diff --git a/src/assets/images/collaborators.png b/src/assets/images/collaborators.png new file mode 100644 index 0000000..c9efefc Binary files /dev/null and b/src/assets/images/collaborators.png differ diff --git a/src/assets/images/distributed_data.png b/src/assets/images/distributed_data.png new file mode 100644 index 0000000..e511ccf Binary files /dev/null and b/src/assets/images/distributed_data.png differ diff --git a/src/assets/images/node.png b/src/assets/images/node.png new file mode 100644 index 0000000..6bf73d0 Binary files /dev/null and b/src/assets/images/node.png differ diff --git a/src/assets/images/partners.png b/src/assets/images/partners.png new file mode 100644 index 0000000..6322f69 Binary files /dev/null and b/src/assets/images/partners.png differ diff --git a/src/assets/images/rings.png b/src/assets/images/rings.png index e55d9bd..e2f052c 100644 Binary files a/src/assets/images/rings.png and b/src/assets/images/rings.png differ diff --git a/src/assets/images/rings_no_frame.png b/src/assets/images/rings_no_frame.png new file mode 100644 index 0000000..225d40d Binary files /dev/null and b/src/assets/images/rings_no_frame.png differ diff --git a/src/assets/images/roadmap.png b/src/assets/images/roadmap.png new file mode 100644 index 0000000..e6f83ff Binary files /dev/null and b/src/assets/images/roadmap.png differ diff --git a/src/assets/images/signed_paper.png b/src/assets/images/signed_paper.png index bb0dd41..6fc114e 100644 Binary files a/src/assets/images/signed_paper.png and b/src/assets/images/signed_paper.png differ diff --git a/src/assets/images/speed.png b/src/assets/images/speed.png new file mode 100644 index 0000000..22fa83c Binary files /dev/null and b/src/assets/images/speed.png differ diff --git a/src/blocks/subscribe-to-our-newsletter/subscribe-to-our-newsletter.module.scss b/src/blocks/subscribe-to-our-newsletter/subscribe-to-our-newsletter.module.scss index 20834f9..1e69fbf 100644 --- a/src/blocks/subscribe-to-our-newsletter/subscribe-to-our-newsletter.module.scss +++ b/src/blocks/subscribe-to-our-newsletter/subscribe-to-our-newsletter.module.scss @@ -44,7 +44,7 @@ top: -40px; width: 231px; height: 237px; - transform: matrix(-0.9, -0.44, -0.44, 0.9, 0, 0); + transform: matrix(0.9, 0, 0, 0.9, -65, -130); } } } diff --git a/src/content/build-for-the-real-world-with-confidence.ts b/src/content/build-for-the-real-world-with-confidence.ts index ab9035f..0b8ccbf 100644 --- a/src/content/build-for-the-real-world-with-confidence.ts +++ b/src/content/build-for-the-real-world-with-confidence.ts @@ -1,9 +1,9 @@ import { BreakpointsStyleObjectType } from "../common/types/breakpoints-style-object-type"; -import tokenPng from "../assets/images/token_high_resolution.png"; -import explorePng from "../assets/images/explore.png"; -import ideaPng from "../assets/images/idea.png"; -import growthInclinDeclinePng from "../assets/images/growth_incline_decline.png"; +import distributedDataPng from "../assets/images/distributed_data.png"; +import roadMapPng from "../assets/images/roadmap.png"; +import trustPng from "../assets/images/trust.png"; +import nodePng from "../assets/images/node.png"; export const buildForTheRealWorldData: Array<{ title: string | React.ReactElement; @@ -15,25 +15,25 @@ export const buildForTheRealWorldData: Array<{ title: "DART", description: "Our innovative database is built from the bottom up to prevent bottlenecks that have previously hampered the adoption of distributed networks.", - img: tokenPng, + img: distributedDataPng, }, { title: "Wavefront", description: "The patented communication protocol enables fast consensus across our distributed database.", - img: explorePng, + img: roadMapPng, }, { title: "Ordering and deterministic consensus", description: "Our consensus is deterministic and reliable, not probabilistic and potentially changeable as in most blockchain implementations. New transactions are submitted in strict order, to prevent fraud and manipulation.", - img: ideaPng, + img: trustPng, }, { title: "Node swapping", description: "Tagion remains open and secure by combining meritocratic and random elements in determining which nodes participate in the consensus mechanism.", - img: growthInclinDeclinePng, + img: nodePng, }, ]; diff --git a/src/content/next-gen-financial-infrastrucure.tsx b/src/content/next-gen-financial-infrastrucure.tsx index 6db5880..a0892bf 100644 --- a/src/content/next-gen-financial-infrastrucure.tsx +++ b/src/content/next-gen-financial-infrastrucure.tsx @@ -2,9 +2,9 @@ import React from "react"; import { BreakpointsStyleObjectType } from "../common/types/breakpoints-style-object-type"; -import ideaPng from "../assets/images/idea.png"; -import growthPng from "../assets/images/growth_incline_decline.png"; -import workinprogressPng from "../assets/images/work_in_progress.png"; +import partnersPng from "../assets/images/partners.png"; +import speedPng from "../assets/images/speed.png"; +import collaboratorsPng from "../assets/images/collaborators.png"; import highrestokenPng from "../assets/images/token_high_resolution_cutted.png"; export const nextGennFinancialInfrastrucureData: Array<{ @@ -26,13 +26,13 @@ export const nextGennFinancialInfrastrucureData: Array<{ title: "You own it, together. Nobody exploits it.", description: "Electronic payments and financial tools are a necessity of modern life. The underlying infrastructure should be a public good, universally accessible and not operated for private profits. That is how Tagion is designed. It belongs to all who contribute and rely on it.", - img: ideaPng, + img: partnersPng, }, { title: "Decentralised mainnet - federated sub-systems", description: "Thanks to sub-systems that can synchronize but remain independent from the mainnet, you can customise your network to work according to your rules. Create incentives and governance rules that suit your context.", - img: workinprogressPng, + img: collaboratorsPng, style: { title: { desktop_large: { width: "400px" } }, description: { tablet: { width: "460px" } }, @@ -42,6 +42,6 @@ export const nextGennFinancialInfrastrucureData: Array<{ title: "At scale and speed", description: "Read, write, update and delete data seamlessly. Make transactions at the speed of conventional payment systems, but with the benefits of distributed networks. All with minimal energy consumption.", - img: growthPng, + img: speedPng, }, ];