developers.urbit.org/pages/community/index.js

112 lines
3.9 KiB
JavaScript
Raw Normal View History

2022-06-23 00:13:07 +03:00
import Head from "next/head";
import Link from "next/link";
import Header from "../../components/Header";
import Footer from "../../components/Footer";
import {
Container,
Section,
SingleColumn,
TwoUp,
} from "foundation-design-system";
import Meta from "../../components/Meta";
import Card from "../../components/Card";
2022-06-23 10:55:08 +03:00
export default function Community({ search }) {
2022-06-23 00:13:07 +03:00
const post = {
title: "Community",
description:
"The developer community is a combination of top-down stewardship from the Urbit Foundation and Tlon, as well as organic, bottom-up coordination from unaffiliated enthusiasts.",
};
return (
<Container>
<Head>
<title>Blog developers.urbit.org</title>
{Meta(post)}
</Head>
2022-06-23 10:55:08 +03:00
<Header search={search} />
2022-06-23 00:13:07 +03:00
<SingleColumn>
<Section>
<h1>Community</h1>
<div className="md:columns-2 mt-8">
<p>
The developer community is a combination of top-down stewardship
from the Urbit Foundation and Tlon, as well as organic, bottom-up
coordination from unaffiliated enthusiasts.
</p>
<p className="mt-2">
The Urbit Foundation makes direct investments of address space
into the community as a means of improving the network. The
Foundation also maintains developer documentation, runs Developer
Calls, and acts as the hub of the Urbit ecosystem. You can find us
hanging around in the{" "}
<Link
href="https://urbit.org/groups/~wolref-podlex/foundation"
passHref
>
<a>Foundation</a>
</Link>{" "}
group.
</p>
<p className="mt-4">
<a href="https://tlon.io">Tlon</a> is the primary developer of
Urbit itself and the foremost product developer within the Urbit
ecosystem. Theyve been developing Urbit since 2013 and are
naturally a great source of information. They maintain the most
popular Landscape groups,{" "}
<Link
href="https://urbit.org/groups/~bitbet-bolbel/urbit-community"
passHref
>
<a>Urbit Community</a>
</Link>{" "}
and{" "}
<Link
href="https://urbit.org/groups/~bollug-worlus/urbit-index"
passHref
>
<a>Urbit Index</a>
</Link>
.
</p>
</div>
</Section>
<Section>
<TwoUp>
<Card
title="Directory"
text="Our community is comprised of friendly individuals, both independent and part of a variety of organizations"
href="/community/directory"
callout="View Directory"
className="h-full"
/>
<Card
title="Developer Events"
text="We regularly host livestreams, meetups, and hackathons"
href="/community/events"
callout="View Events"
className="h-full"
/>
</TwoUp>
<TwoUp>
<Card
title="Support"
text="There are a variety of Urbit groups as well as a mailing list where you can ask questions and get timely answers"
href="/community/support"
callout="Get Support"
className="h-full"
/>
<Card
title="Opportunities"
text="Urbit is growing and there are many opportunities to find a job, grant, or funding for your great idea"
href="/community/opportunities"
callout="Explore Opportunities"
className="h-full"
/>
</TwoUp>
</Section>
</SingleColumn>
<Footer />
</Container>
);
}