-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.astro
More file actions
31 lines (25 loc) · 774 Bytes
/
Copy pathlinks.astro
File metadata and controls
31 lines (25 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
import BaseLayout from '../layouts/BaseLayout.astro';
---
<BaseLayout title="Links">
<div class="page">
<h1>Links</h1>
<h2> Instagram </h2>
<p>
<a href=https://www.instagram.com/canopee.mp3> <button>Canopee Instagram</button> </a>
<a href=https://www.instagram.com/xoxoxo.dawny> <button>Dawny Instagram</button> </a>
<a href=https://www.instagram.com/friday.aiff> <button>Friday Instagram</button> </a>
</p>
<h2> Soundcloud
<p>
<a href=https://soundcloud.com/ali_ali_ali_ali> <button>Friday Soundcloud</button> </a>
<a href=https://soundcloud.com/dj_dawny> <button>Dawny Soundcloud</button> </a>
</p>
</div>
</BaseLayout>
<style>
.page {
max-width: 760px;
margin: 0 auto;
}
</style>