Skip to content

Commit

Permalink
add course page
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecasal committed Jul 4, 2023
1 parent 6eb1057 commit 23d2049
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion app/routes/_marketing+/courses+/route.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
import { Heading } from '~/components/ui/heading.tsx'
import { Container } from '../../../components/ui/container.tsx'
import MasteryForVSCode from '../components/mastery-for-vs-code.tsx'

const Courses = () => {
return <p>Courses</p>
return (
<>
<Container>
<div className="py-24 sm:py-32">
<div className="mx-auto max-w-2xl lg:mx-0">
<Heading level="h1" size="xl">
Courses for you to upgrade your skills
</Heading>
<p className="mt-6 text-lg leading-8 text-muted-800">Awesome courses to upgrade your skills.</p>
</div>
</div>
</Container>
<MasteryForVSCode />
</>
)
}

export default Courses

0 comments on commit 23d2049

Please sign in to comment.