summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/src/layouts/main.astro
blob: dc4feb87e1d5d3dea01a04ad4e4ebbf4d9ece8bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
const { content } = Astro.props;
---

<html lang="en">
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width" />
		<link rel="icon" type="image/x-icon" href="/favicon.ico" />
		<title>{content.title}</title>
	</head>
	<body>
		<slot />
	</body>
</html>