import * as React from "react"; // import { StaticImage } from "gatsby-plugin-image"; import Layout, { Section, SectionTitle, CardWithDescription, CardWithTitle, CardCarousel } from "../components/Layout"; import SEO from "../components/seo"; import CommunitySection from "../components/CommunitySection"; import Uploader from "../components/Uploader"; import { ArrowRight, SkynetToolBig, SkynetUserBig, SkynetPowerBig, SkynetMonetizationSmall, SkynetPersistenceSmall, SkynetSpeedSmall, SkynetUsageSmall, SkynetSiaSmall, } from "../components/Icons"; import Link from "../components/Link"; 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 (

Build a free Internet

Skynet is a content and application hosting platform bringing decentralized storage to users, creators and app developers. Skynet is a content and application hosting platform bringing decentralized storage to users, creators and app developers.

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? Learn more
{ecosystemCards.map((card, index) => ( ))}
Learn more
); }; export default IndexPage;