nebula2 / src /layouts /SettingsSection.astro
soiz1's picture
Upload folder using huggingface_hub
01fcadf verified
raw
history blame contribute delete
253 Bytes
---
const { title, subtitle } = Astro.props;
---
<div class="mt-5 font-roboto">
<hr />
<div class="mt-3">
<div class="text-2xl font-semibold">{title}</div>
<div class="text-lg mb-5">{subtitle}</div>
<slot />
</div>
</div>