computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
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.
12 lines
468 B
12 lines
468 B
--- |
|
import BaseLayout from '../layouts/BaseLayout.astro'; |
|
import { DiscoverRoadmaps } from '../components/DiscoverRoadmaps/DiscoverRoadmaps'; |
|
|
|
const title = 'Discover Custom Roadmaps'; |
|
const description = |
|
'Explore the community-created roadmaps to learn new skills, tools, and technologies. You can also create your own roadmap and share it with the world.'; |
|
--- |
|
|
|
<BaseLayout title={title} description={description}> |
|
<DiscoverRoadmaps client:load /> |
|
</BaseLayout>
|
|
|