-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c58215
commit 1cf86a1
Showing
41 changed files
with
505 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
import Team from '../Team' | ||
import Mentors from '../Mentors' | ||
import Associations from '../Associations' | ||
|
||
const index = () => { | ||
return ( | ||
<div> | ||
<Team /> | ||
<Mentors /> | ||
<Associations /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default index; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React, {useState} from 'react'; | ||
|
||
const Hero = () => { | ||
|
||
const [submitted, | ||
setSubmitted] = useState('') | ||
|
||
return ( | ||
<section className="hero mt-32 sm:mt-48 mb-24 px-6 sm:px-8 md:px-10"> | ||
<div className="max-w-5xl mx-auto"> | ||
<div className="hero-container max-w-2xl text-center sm:text-left"> | ||
<h1 | ||
className="hero-title font-display text-5xl sm:text-6xl font-bold text-primary">Meet Asteria Protocol</h1> | ||
<div className="hero-subtitle text-xl text-grey70 mt-4"> | ||
New standard to treat and store user data that makes privacy and security | ||
accessible to all. | ||
</div> | ||
<form | ||
action="https://docs.google.com/forms/d/e/1FAIpQLSfzv2VtO6S7hE4KKXCAszJspfcBp3C4ZlPdEMAa6T3J69ZNkg/formResponse" | ||
className={`${submitted} hero-cta mt-16`} | ||
target="hidden_iframe" | ||
> | ||
<input | ||
name="entry.1532827602" | ||
className="bg-grey250 px-6 py-4 min-w-full sm:min-w-auto sm:w-84 outline-none rounded sm:rounded-r-none text-center sm:text-left" | ||
type="email" | ||
placeholder="Your Email" | ||
required/> | ||
<input | ||
className='mt-2 sm:mt-0 min-w-full sm:min-w-auto sm:w-auto bg-primary text-white px-6 py-4 rounded sm:rounded-l-none cursor-pointer' | ||
value="Get Monthly Updates" | ||
onClick={()=>{setSubmitted('submitted')}} | ||
type="submit"/> | ||
</form> | ||
|
||
<iframe title="hidden_iframe" name="hidden_iframe" id="hidden_iframe" className="hidden"></iframe> | ||
|
||
<div className={`${submitted} form-feedback mt-6 text-variant2 font-bold`}>Thank you for signing up for updates on Asteria Protocol.</div> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Hero; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import './Hero'; | ||
import Hero from './Hero'; | ||
import Feature from './Feature' | ||
import Quote from './Quote' | ||
|
||
const index = () => { | ||
return ( | ||
<main> | ||
<Hero /> | ||
<Feature /> | ||
<Quote /> | ||
</main> | ||
); | ||
}; | ||
|
||
export default index; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React from 'react'; | ||
import {Link} from 'react-router-dom'; | ||
|
||
import gosocial from './img/gosocial.jpg' | ||
import oneramp from './img/1ramp.jpg'; | ||
import asteria from './img/asteria.jpg'; | ||
|
||
const Products = () => { | ||
return ( | ||
<section className="products"> | ||
<div className="max-w-4xl mx-auto"> | ||
<h2 className="text-xl uppercase font-bold">Ideas we are working on</h2> | ||
{/* Go Social App */} | ||
<div className="flex mt-16 border-b pb-10"> | ||
<img src={gosocial} alt="Go Social App Logo"/> | ||
<div className="md:ml-12"> | ||
<h3 className="text-4xl font-display">Go.Social</h3> | ||
<p className="mt-4 text-lg">Inspiring humans to take on a digital journey of their lifetime. A platform where you learn, explore, create, and grow as a creative individual.</p> | ||
<a className="mt-8 inline-block underline font-bold" href="https://gosocialapp.co" target="_new">LET’S GO</a> | ||
</div> | ||
</div> | ||
|
||
{/* 1ramp.io */} | ||
<div className="flex mt-16 border-b pb-10"> | ||
<img src={oneramp} alt="1ramp App Logo"/> | ||
<div className="md:ml-12"> | ||
<h3 className="text-4xl font-display">1Ramp.io</h3> | ||
<p className="mt-4 text-lg">Social media platform for creative communities. Where creators earn cryptocurrency for every like they get. Powered by <a className="font-bold underline" href="https://steem.com">Steem</a> Blockchain.</p> | ||
<div>Available for <a className="mt-8 inline-block underline font-bold" href="https://gosocialapp.co" target="_new">Android</a> and <a className="mt-8 inline-block underline font-bold" href="https://gosocialapp.co" target="_new">Web</a></div> | ||
</div> | ||
</div> | ||
|
||
{/* Asteria */} | ||
<div className="flex mt-16 pb-10"> | ||
<img src={asteria} alt="Asteria App Logo"/> | ||
<div className="md:ml-12"> | ||
<h3 className="text-4xl font-display">Asteria Protocol</h3> | ||
<p className="mt-4 text-lg">New standard to treat and store user data that makes privacy and security accessible to all.</p> | ||
<a className="mt-8 inline-block underline font-bold" href="https://gosocialapp.co" target="_new">LEARN MORE</a> | ||
</div> | ||
</div> | ||
|
||
{/* Link Group */} | ||
<div className="text-3xl font-display font-bold mb-20"> | ||
<Link className="mr-8 hover:underline" to="/about">about us</Link> | ||
<Link className="hover:underline" to="/work">work with us</Link> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Products; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
|
||
import linkedIn from './img/social/linkedin.svg'; | ||
import twitter from './img/social/twitter.svg'; | ||
import medium from './img/social/medium.svg'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer className="bg-black py-6 text-white px-4 sm:px-8 md:px-10"> | ||
<div className="max-w-4xl mx-auto flex-col md:flex-row flex md:justify-between items-center"> | ||
<div className="md:max-w-md lg:max-w-lg"> | ||
<h2 className="font-display text-4xl font-bold">HAPRAMP STUDIO</h2> | ||
</div> | ||
|
||
<div className="mt-10 md:mt-0 md:ml-4"> | ||
<div className="flex items-center"> | ||
<a href="mailto:[email protected]" className="mr-6">[email protected]</a> | ||
<a href="https://twitter.com/hapramp" className="mr-6" target="__new"><img src={twitter} alt="Twiiter Social Icon"/></a> | ||
<a href="https://www.linkedin.com/company/hapramp/" className="mr-6" target="__new"><img src={linkedIn} alt="LinkedIn Social Icon"/></a> | ||
<a href="https://medium.com/hapramp" target="__new"><img src={medium} alt="Medium Social Icon"/></a> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
) | ||
}; | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import {NavLink} from 'react-router-dom'; | ||
|
||
const Header = () => { | ||
return ( | ||
<header className="py-4 px-4 sm:px-8 md:px-10"> | ||
<div className="max-w-5xl mx-auto flex-col md:flex-row flex md:justify-between items-center"> | ||
<div className="md:max-w-md lg:max-w-lg"> | ||
<h2 className="font-display text-2xl font-bold"><NavLink to="/">HAPRAMP</NavLink></h2> | ||
|
||
</div> | ||
|
||
<div className="mt-10 md:mt-0 md:ml-4"> | ||
<div className="flex items-center font-bold text-grey54"> | ||
<NavLink className="mr-6" to="/about">about us</NavLink> | ||
<NavLink to="/work">work with us</NavLink> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
); | ||
}; | ||
|
||
export default Header; |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.