parent
febeb6f586
commit
41054ba97e
18 changed files with 106 additions and 71 deletions
@ -1,16 +1,24 @@ |
||||
--- |
||||
import ProgressHelpPopup from '../../components/ProgressHelpPopup.astro'; |
||||
import Loader from '../../components/Loader.astro'; |
||||
import { CustomRoadmap } from '../../components/CustomRoadmap/CustomRoadmap'; |
||||
import BaseLayout from '../../layouts/BaseLayout.astro'; |
||||
import { CustomRoadmap } from '../../components/CustomRoadmap/CustomRoadmap'; |
||||
import { SkeletonRoadmapHeader } from '../../components/CustomRoadmap/SkeletonRoadmapHeader'; |
||||
import Loader from '../../components/Loader.astro'; |
||||
import ProgressHelpPopup from '../../components/ProgressHelpPopup.astro'; |
||||
|
||||
const date = new Date(); |
||||
const { customRoadmapSlug } = Astro.params; |
||||
--- |
||||
|
||||
<BaseLayout title='Roadmaps'> |
||||
<ProgressHelpPopup /> |
||||
<div class='mx-auto max-w-2xl p-20'> |
||||
<h1>{date}</h1> |
||||
<div> |
||||
<div class='flex min-h-[550px] flex-col'> |
||||
<div data-roadmap-loader class='flex w-full grow flex-col'> |
||||
<SkeletonRoadmapHeader /> |
||||
<div class='flex grow items-center justify-center'> |
||||
<Loader /> |
||||
</div> |
||||
</div> |
||||
<CustomRoadmap slug={customRoadmapSlug} client:only='react' /> |
||||
</div> |
||||
</div> |
||||
</BaseLayout> |
Loading…
Reference in new issue