summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src/pages/markdown-page.mdx
blob: 8b024ec9c2588682433cfcfe9885beffc157e1e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
title: 'Markdown + Tailwind'
layout: ../layouts/main.astro
---

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>