summaryrefslogtreecommitdiff
path: root/examples/integrations-playground/src/pages/foo.astro
blob: fbdd5bb1fef61e6e8e89b63f01d00c1a3e6b5805 (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>