Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.3 KiB

---
11 months ago
import { RoadmapsPage } from '../components/Roadmaps/RoadmapsPage';
import GridItem from '../components/GridItem.astro';
import SimplePageHeader from '../components/SimplePageHeader.astro';
import BaseLayout from '../layouts/BaseLayout.astro';
import { getRoadmapsByTag } from '../lib/roadmap';
---
<BaseLayout
title='Developer Roadmaps'
description={'Step by step guides and paths to learn different tools or technologies'}
permalink={'/roadmaps'}
>
11 months ago
<div class=''>
<div class='bg-white py-12'>
<div class='container'>
<div class='flex flex-col items-center bg-white'>
<h1 class='text-5xl font-bold'>Developer Roadmaps</h1>
11 months ago
<p class='my-3 text-lg'>
11 months ago
Browse ever-growing list of up-to-date, community driven roadmaps
</p>
11 months ago
<p class='flex flex-row gap-3'>
<a
class='inline-block rounded-md bg-black px-3.5 py-1.5 text-base text-white'
href='#'
>
11 months ago
Draw your own roadmap
</a>
11 months ago
<a
class='inline-block rounded-md bg-gray-300 px-3.5 py-1.5 text-base text-black'
href='#'
>
11 months ago
Generate Roadmap with AI
</a>
</p>
</div>
</div>
</div>
11 months ago
<RoadmapsPage client:load />
</div>
</BaseLayout>