-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Just getting ready for all the subs of #48 - Removes the special treatment of the header - Removes all the special side scrolling stuff - Renames sections to their section header name - Removes many of the extra containers - Removes all the extra waves (although not assets yet)
- Loading branch information
Showing
38 changed files
with
231 additions
and
704 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script lang="ts"> | ||
import SectionWrapper from './SectionWrapper.svelte'; | ||
import SlideIn from '../SlideIn.svelte'; | ||
import SectionParagraph from '../SectionParagraph.svelte'; | ||
import SectionContent from '../SectionContent.svelte'; | ||
</script> | ||
|
||
<SectionWrapper id="about"> | ||
<div class="freq-container"> | ||
<SectionContent classes=""> | ||
<div class=""> | ||
<SlideIn> | ||
<h2 class="title-100">What is Frequency?</h2> | ||
</SlideIn> | ||
</div> | ||
|
||
<SectionParagraph classes=""> | ||
Frequency is a blockchain designed to support decentralized social networks to give people control over their | ||
online presence. With Frequency, users can freely choose and connect on social apps while retaining ownership of | ||
their data. Built on the Decentralized Social Networking Protocol (DSNP), Frequency offers scalable tools for | ||
message discovery, flexible storage for social and identity data, and a unique cost-sharing model that allows | ||
apps to deliver smooth, secure experiences that put users in charge." | ||
</SectionParagraph> | ||
</SectionContent> | ||
</div> | ||
<div>[Image]</div> | ||
</SectionWrapper> |
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,14 @@ | ||
<script lang="ts"> | ||
import SectionWrapper from './SectionWrapper.svelte'; | ||
import SectionParagraph from '../SectionParagraph.svelte'; | ||
import SectionContent from '../SectionContent.svelte'; | ||
import GetNotified from '../GetNotified/GetNotified.svelte'; | ||
</script> | ||
|
||
<SectionWrapper id="about" classes="text-white bg-navy"> | ||
<SectionContent classes="freq-container"> | ||
<SectionParagraph classes="">Image</SectionParagraph> | ||
|
||
<GetNotified /> | ||
</SectionContent> | ||
</SectionWrapper> |
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 @@ | ||
<script lang="ts"> | ||
import SectionParagraph from '../SectionParagraph.svelte'; | ||
import SlideIn from '../SlideIn.svelte'; | ||
import SectionWrapper from './SectionWrapper.svelte'; | ||
</script> | ||
|
||
<SectionWrapper id="developers" classes="freq-container"> | ||
<section class=""> | ||
<SlideIn> | ||
<h2 class="title-75">Developer Advantages:</h2> | ||
</SlideIn> | ||
|
||
<SectionParagraph classes="">Getting started building on Frequency is simple and easy.</SectionParagraph> | ||
|
||
<a href="/docs"> Developer Portal </a> | ||
</section> | ||
</SectionWrapper> |
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,23 @@ | ||
<script lang="ts"> | ||
import SectionWrapper from './SectionWrapper.svelte'; | ||
import SlideIn from '../SlideIn.svelte'; | ||
</script> | ||
|
||
<SectionWrapper id="mission" classes=""> | ||
<section class="freq-container"> | ||
<SlideIn> | ||
<h2 class="title-75">Frequency’s Mission</h2> | ||
</SlideIn> | ||
<SlideIn> | ||
<p class=""> | ||
Frequency’s Mission is to provide critical infrastructure to help people take back control over their digital | ||
lives by: | ||
</p> | ||
</SlideIn> | ||
</section> | ||
<div class="bg-navy"> | ||
<div class="freq-container"> | ||
<h2>Your Network</h2> | ||
</div> | ||
</div> | ||
</SectionWrapper> |
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,14 @@ | ||
<script lang="ts"> | ||
import SectionParagraph from '../SectionParagraph.svelte'; | ||
import SlideIn from '../SlideIn.svelte'; | ||
import SectionWrapper from './SectionWrapper.svelte'; | ||
</script> | ||
|
||
<SectionWrapper id="partners" classes="freq-container"> | ||
<section class=""> | ||
<SlideIn> | ||
<h2 class="title-75">Our Partners</h2> | ||
</SlideIn> | ||
<SectionParagraph classes="">A, B, C</SectionParagraph> | ||
</section> | ||
</SectionWrapper> |
Oops, something went wrong.