blob: 4f48594527e6d4603ad8a326ceefa6d4e84cf151 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
---
title: 'Markdown + Tailwind'
layout: ../layouts/main.astro
setup: |
import Button from '../components/Button.astro';
---
<div class="grid place-items-center h-screen content-center">
<Button>Tailwind Button in Markdown!</Button>
<a href="/" class="p-4 underline">Go home...</a>
</div>
|