import * as React from "react"; // import { StaticImage } from "gatsby-plugin-image"; import Layout from "../components/Layout"; import SEO from "../components/seo"; import HeroStartPage from "../components/HeroStartPage"; import CommunitySection from "../components/CommunitySection"; import Uploader from "../components/Uploader"; import { ArrowRight, SkynetToolBig, SkynetUserBig, SkynetPowerBig, SkynetMonetizationSmall, SkynetPersistenceSmall, SkynetSpeedSmall, SkynetUsageSmall, SkynetSiaSmall, } from "../components/Icons"; import classnames from "classnames"; const Section = React.forwardRef(({ children, className, ...props }, ref) => (
{children}
)); const EtosCard = ({ Icon, text }) => (

{text}

); const EcosystemCard = ({ Icon, title, text }) => (

{title}

{text}

); const LearnMoreButton = () => ( Learn more ); const SectionTitle = ({ children, className, ...props }) => (

{children}

); const etosCards = [ { Icon: SkynetToolBig, title: "Build a freer future", }, { Icon: SkynetUserBig, title: "Fight corporate control of user data", }, { Icon: SkynetPowerBig, title: "Empower global citizens", }, ]; const ecosystemCards = [ { Icon: SkynetUsageSmall, title: "Easy to use", text: "Decentralized storage without needing to run a node or wallet. Skynet also includes SDKs for popular programming languages and APIs that integrate seamlessly with your existing apps.", }, { Icon: SkynetSpeedSmall, title: "Fast", text: "Skynet's speeds rival centralized providers and surpass all decentralized offerings. A typical Skynet download starts in under 500 ms and can stream at rates as high as 1 Gbps!", }, { Icon: SkynetSiaSmall, title: "Free to use", text: "Focus on building, not overheard server costs. When users own their data, developers aren't asked to pay for it.", }, { Icon: SkynetMonetizationSmall, title: "Monetization", text: "Profit directly from the success of your skapp. Now you can truly prioritize your users, instead of advertisers.", }, { Icon: SkynetPersistenceSmall, title: "Persistence", text: "Your skapp and data stay live, even if corporations pull your access to their resources. You can also use Skynet as a failover site for when centralized providers go down.", }, ]; const IndexPage = () => { return (
The new decentralized internet is here
{etosCards.map((card, index) => ( ))}

Skynet apps pave the way for a new web that priorities the privacy, security, and experience of users. Join our decentralized ecosystem and revolution.

Try Skynet Apps
Ready to build your application?
Ready to build your application?
{ecosystemCards.map((card, index) => ( ))}
{/*

Hi people

Welcome to your new Gatsby site.

Now go build something great.

Go to page 2
Go to "Using TypeScript"

*/}
); }; export default IndexPage;