diff options
author | 2025-06-05 12:45:05 +0000 | |
---|---|---|
committer | 2025-06-05 12:45:05 +0000 | |
commit | ba8164f9bafe4eab5b2353d3c4fbc4b872d328d4 (patch) | |
tree | 3dcff3b78de15e03adeb407f26729fd1cd14cbb7 /src/pages/markdown-page.md | |
download | astro-examples/with-tailwindcss.tar.gz astro-examples/with-tailwindcss.tar.zst astro-examples/with-tailwindcss.zip |
Sync from 0947a69192ad6820970902c7c951fb0cf31fcf4bexamples/with-tailwindcss
Diffstat (limited to 'src/pages/markdown-page.md')
-rw-r--r-- | src/pages/markdown-page.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pages/markdown-page.md b/src/pages/markdown-page.md new file mode 100644 index 000000000..de11d381b --- /dev/null +++ b/src/pages/markdown-page.md @@ -0,0 +1,16 @@ +--- +title: 'Markdown + Tailwind' +layout: ../layouts/main.astro +--- + +<div class="grid place-items-center h-screen content-center"> + <div class="py-2 px-4 bg-purple-500 text-white font-semibold rounded-lg shadow-md"> + Tailwind classes also work in Markdown! + </div> + <a + href="/" + class="p-4 underline hover:text-purple-500 transition-colors ease-in-out duration-200" + > + Go home + </a> +</div> |