summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src/pages/index.astro
blob: ba346e6c2b618d383f0fe736c5a259d2f7336370 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
// Component Imports
import Button from '../components/Button.astro';
import '../styles/global.css';

// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/
---

<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<link rel="icon" type="image/x-icon" href="/favicon.ico" />
		<title>Astro + TailwindCSS</title>
	</head>

	<body>
		<Button>I’m a Tailwind Button!</Button>
	</body>
</html>