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

{text}

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

{title}

{text}

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

{children}

); const IndexPage = () => (
The new decentralized internet is here

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?
{/*

Hi people

Welcome to your new Gatsby site.

Now go build something great.

Go to page 2
Go to "Using TypeScript"

*/}
); export default IndexPage;