diff --git a/src/components/FeaturedGuides.astro b/src/components/FeaturedGuides.astro new file mode 100644 index 000000000..8e707a202 --- /dev/null +++ b/src/components/FeaturedGuides.astro @@ -0,0 +1,33 @@ +--- +import type { GuideFileType } from '../lib/guide'; +import GuideListItem from './GuideListItem.astro'; + +export interface Props { + heading: string; + guides: GuideFileType[]; +} + +const { heading, guides } = Astro.props; +--- + +
- roadmap.sh is a community +
+ roadmap.sh is a community effort to create roadmaps, guides and other educational content to help guide the developers in picking up the path and guide their learnings.
-+
Community created roadmaps, guides and articles to help developers grow in their career.