adding c2a copy to courses

This commit is contained in:
Gordon 2023-01-23 16:37:59 -08:00
parent 3d1bc31e85
commit 305514dfc2
6 changed files with 14 additions and 7 deletions

View File

@ -6,22 +6,23 @@ export default function TallCard({
description, description,
callout, callout,
href, href,
next_cohort,
className = "" className = ""
}) { }) {
return <div className={"cursor-pointer h-full flex flex-col min-h-0 " + className}> return <div className={"h-full flex flex-col min-h-0 " + className}>
<div key={title} className="bg-wall-100 rounded-xl h-full"> <div key={title} className="bg-wall-100 rounded-xl h-full">
<Link href={href}>
<div className="flex flex-col space-y-4 p-6 justify-between items-start lg:items-center relative"> <div className="flex flex-col space-y-4 p-6 justify-between items-start lg:items-center relative">
<div className="rounded-lg w-full"> <div className="rounded-lg w-full">
{image({ className: "w-full h-full" })} {image({ className: "w-full h-full" })}
</div> </div>
<div className="flex flex-col space-y-2"> <div className="flex flex-col space-y-2">
<h3>{title}</h3> <h3>{title}</h3>
<p>{description}</p> <p className="text-sm">{description}</p>
</div> </div>
<a className="button-sm bg-green-400 text-white w-fit self-start">{callout}</a> <Link href={href}>
<a className="button-sm bg-green-400 text-white text-sm w-fit self-start ph-8">{callout}</a>
</Link>
</div> </div>
</Link>
</div> </div>
</div> </div>
} }

View File

@ -1,6 +1,7 @@
+++ +++
title = "App School Live" title = "App School Live"
weight = 6 weight = 6
next_cohort = "January 23, 2023"
+++ +++
The Urbit Foundation offers cohort classes to cover the [App The Urbit Foundation offers cohort classes to cover the [App

View File

@ -1,6 +1,8 @@
+++ +++
title = "App Workshop Live" title = "App Workshop Live"
weight = 15 weight = 15
next_cohort = "Late 2023"
+++ +++
App Workshop will serve as a hands-on intensive course to build App Workshop will serve as a hands-on intensive course to build

View File

@ -1,6 +1,7 @@
+++ +++
title = "Core School Live" title = "Core School Live"
weight = 20 weight = 20
next_cohort = "Late Summer 2023"
+++ +++
The Urbit Foundation will offer a cohort classes to train new core developers. The Urbit Foundation will offer a cohort classes to train new core developers.

View File

@ -1,6 +1,7 @@
+++ +++
title = "Hoon School Live" title = "Hoon School Live"
weight = 10 weight = 10
next_cohort = "March 20, 2023"
+++ +++
Periodically, the Urbit Foundation has offered synchronous cohort classes which Periodically, the Urbit Foundation has offered synchronous cohort classes which

View File

@ -69,8 +69,9 @@ export default function Courses({ search }) {
<SingleColumn> <SingleColumn>
<Section> <Section>
<h1>Courses</h1> <h1>Courses</h1>
</Section> <div class="pt-12 pb-12 sm:pr-32">
<Section> <p className="">The Urbit Foundation offers a variety of cohort courses for those interested in learning development on Urbit. If you prefer to learn as part of a group with a hands-on instructor, regular exercises and discussions, and a completion certification, then these courses will be a good fit for you.</p>
</div>
{pairedCourses.map((pair) => { {pairedCourses.map((pair) => {
return <TwoUp> return <TwoUp>
{pair.map((course) => { {pair.map((course) => {