Skip to content

Commit

Permalink
Make a splash page for Ariton
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed May 19, 2024
1 parent a5d435f commit e8f448b
Show file tree
Hide file tree
Showing 9 changed files with 188 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Discover, create, and join communities that match your interests and passions.
Ariton is a (future) superapp that lets you create and join communities of any kind,
based on your hobbies, ideas, philosophy, faith or anything else.

![Ariton logo](/assets/ariton-logo.png)
![Ariton logo](/docs/assets/ariton-logo.png)

Built on free and open standards, Ariton gives you the power and ownership of
your own identities and data.
Expand Down Expand Up @@ -51,9 +51,9 @@ Without the advances in open standards on decentralized identifiers, Ariton woul

| | About us |
| --- | --- |
| ![Sondre Bjellås](assets/sondre.png) | **Sondre Bjellås** (Chief Product Engineer) - With more than three decades of experience with software development, he has extensive experience with technology, languages, patterns and practices, both in building large scalable systems, web apps and decentralized software. His relentless focus on rapid release cycles allows Ariton to develop and adopt to its users and market without delays. |
| ![Dan Gershony](assets/dan.png) | **Dan Gershony** (Chief Technology Officer) - With experience from blockchains and former CTO role in a large British player in the blockchain space, Dan brings insight and capabilities to the Ariton team that will ensure success and quality of delivery.|
| ![Milad Raeisi](assets/milad.png) | **Milad Raeisi** (Software Engineer) - He is a seasoned Software Architect and Programmer with over 20 years of experience. As a Senior Developer, he specializes in software development, UI/UX design, data science, AI, and blockchain. His expertise in building large-scale systems and decentralized applications drives innovation and quality at Ariton.|
| ![Sondre Bjellås](docs/assets/sondre.png) | **Sondre Bjellås** (Chief Product Engineer) - With more than three decades of experience with software development, he has extensive experience with technology, languages, patterns and practices, both in building large scalable systems, web apps and decentralized software. His relentless focus on rapid release cycles allows Ariton to develop and adopt to its users and market without delays. |
| ![Dan Gershony](docs/assets/dan.png) | **Dan Gershony** (Chief Technology Officer) - With experience from blockchains and former CTO role in a large British player in the blockchain space, Dan brings insight and capabilities to the Ariton team that will ensure success and quality of delivery.|
| ![Milad Raeisi](docs/assets/milad.png) | **Milad Raeisi** (Software Engineer) - He is a seasoned Software Architect and Programmer with over 20 years of experience. As a Senior Developer, he specializes in software development, UI/UX design, data science, AI, and blockchain. His expertise in building large-scale systems and decentralized applications drives innovation and quality at Ariton.|


## Features
Expand Down
83 changes: 83 additions & 0 deletions docs/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
body {
background-color: black;
background-image: url("assets/levi-guzman-zdSoe8za6Hs-unsplash.jpg");
background-repeat: no-repeat;
background-size: cover;

color: white;
font-size: 18px;

font-family: "Fira Sans", sans-serif;
font-weight: 400;
font-style: normal;
margin: 0;
padding: 0;
}

.slogan2 {
font-family: "Poetsen One", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 2.5em;
}

.logo {
font-family: "Freeman", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 5em;
}

.slogan {
font-family: "Dosis", sans-serif;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
font-size: 2.5em;
}

.container {
margin: 3em;
display: grid;
grid-template-columns: 1fr 1fr 2fr;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas: "left middle right";
}

.right {
padding-top: 8em;
}

@media (max-width: 600px) {
.container {
grid-template-columns: 1fr;
grid-template-rows: 1fr auto 2fr;
grid-template-areas:
"left"
"middle"
"right";
}

.right {
padding-top: 0;
}
}


.left {
grid-area: left;
}

.middle {
grid-area: middle;
}

.right {
grid-area: right;
}

footer {
display: none;
}
Empty file added docs/app.js
Empty file.
File renamed without changes
File renamed without changes
Binary file added docs/assets/levi-guzman-zdSoe8za6Hs-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
101 changes: 101 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ariton - The SuperApp for Communities</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dosis:[email protected]&family=Fira+Sans&family=Freeman&family=Poetsen+One&display=swap" rel="stylesheet">

<link rel="stylesheet" type="text/css" href="app.css" />
</head>
<body>

<div class="container">
<div class="left">
<header>

<h1 class="logo">Ariton</h1>
</header>
<img src="assets/ariton-logo.png">

<p class="slogan">The SuperApp for Communities</p>

</div>
<div class="middle">

</div>
<div class="right">

<main>
<p>
Discover, create, and join communities that match your interests and passions.
</p>
<p>
Ariton is a (future) superapp that lets you create and join communities of any kind,
based on your hobbies, ideas, philosophy, faith or anything else.
</p>
<p>
Built on free and open standards, Ariton gives you the power and ownership of
your own identities and data.
</p>
<p>
Ariton brings your real life communities into the digital world, by giving you
access to a rich set of features that covers the needs to run complete communities.
</p>
<p>
Ariton is not just another app that collects your data, but a tool to help grow
your communities and adopt decentralized technologies that empowers the community,
and its users.
</p>


<h2>Economy of Communities</h2>

<p></p>Ariton is a re-envisioning of the economy for human societies that builds on a new foundation of modern solutions that helps elevate the participants into a better tomorrow.</p>

<p>While Bitcoin gave us sound money, a human society needs so much more. Ariton is a (future) superapp that integrates the latest in decentralized technologies and protocols, allowing anyone to launch their own communities, privately or publicly.</p>

<p>These communities will bring together people, allowing a more free expression and digital lifestyle that is traditionally prohibited on the Internet today.</p>

<p>Ariton is decentralized in such a manner that makes it hard to be stopped, and is easy for the general audience to contribute with strengthening the network as a whole.</p>

<p>Ariton makes the participants in the communities, owner of their own digital data and online presence. Instead of your personal data being used to monetize you, you own and control your own data and how it is shared with others.</p>

<h2>Communities</h2>


<p>
Ariton revolves around communities. You can create and join communities of many kinds, for example "The Knitting Group", which could have instructors, educators, hints and tips, buy and sell and more within the community.
</p>

<p>
A community has no boundries, but can be local and regional, or global and universal.
</p>

<p>
Community owners can earn income from their communities. As a community grows and the quality of content and contributors within it is able to sell their goods and services, the community owners can decide if they want to have a community fee added to various features within the community. This is a way for community manager to reap some rewards from curating a great community.
</p>

<h2>Funding</h2>

<p>
Ariton is seeking investements and funding to continue the development of the new superapp. Behind the project is individuals who have a track record of delivering, wealth of knowledge and experience with software and app development.
</p>
<p>
If you are interested in funding Ariton, please fill out this form and we will get back to you as soon as possible.
</p>

</main>

</div>
</div>


<footer>
<p>Building economy of the future</p>
</footer>
<script src="app.js"></script>
</body>
</html>

0 comments on commit e8f448b

Please sign in to comment.