summaryrefslogtreecommitdiff
path: root/examples/integrations-playground/src/pages/foo.astro
blob: 0e9785f142ec87f319b7bc48fa80b8a057de44ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
// Page 2!
import Link from "../components/Link.jsx";
---

<!DOCTYPE html>
<html lang="en">
	<head>
		<link rel="icon" type="image/x-icon" href="/favicon.ico" />
		<title>Demo: Page 2</title>
	</head>
	<body>
		<Link to="/" text="Go Home" />
	</body>
</html>