This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/src/pages/storage-options.astro
Timothy Rogers e4a725b781 New post
2024-08-07 21:51:27 -04:00

23 lines
No EOL
726 B
Text

---
import MainGridLayout from "../layouts/MainGridLayout.astro";
import { getEntry } from 'astro:content'
import Markdown from "@components/misc/Markdown.astro";
import I18nKey from "../i18n/i18nKey";
import {i18n} from "../i18n/translation";
const aboutPost = await getEntry('spec', 'storage-options')
const { Content } = await aboutPost.render()
---
<MainGridLayout title={i18n(I18nKey.about)} description={i18n(I18nKey.about)}>
<div class="flex w-full rounded-[var(--radius-large)] overflow-hidden relative min-h-32">
<div class="card-base z-10 px-9 py-6 relative w-full ">
<Markdown class="mt-2">
<Content />
</Markdown>
</div>
</div>
</MainGridLayout>