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.
27 lines
708 B
27 lines
708 B
11 months ago
|
---
|
||
|
import GuideHeader from '../../components/GuideHeader.astro';
|
||
|
import MarkdownFile from '../../components/MarkdownFile.astro';
|
||
|
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||
|
import { getGuideById } from '../../lib/guide';
|
||
|
|
||
|
const guideId = 'backend-languages';
|
||
|
const guide = await getGuideById('backend-languages');
|
||
|
|
||
|
const { frontmatter: guideData } = guide;
|
||
|
---
|
||
|
|
||
|
<BaseLayout
|
||
|
title={guideData.seo.title}
|
||
|
description={guideData.seo.description}
|
||
|
permalink={`/guides/${guideId}`}
|
||
|
canonicalUrl={guideData.canonicalUrl}
|
||
|
>
|
||
|
<GuideHeader guide={guide} />
|
||
|
|
||
|
<div class='mx-auto max-w-[700px] py-5 sm:py-10'>
|
||
|
<MarkdownFile>
|
||
|
<guide.Content />
|
||
|
</MarkdownFile>
|
||
|
</div>
|
||
|
</BaseLayout>
|