summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src/pages/markdown-page.md
blob: 19323294cbc4c6feccb62ead9e8d442ccaeddc9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
---
title: 'Markdown + Tailwind'
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>