summaryrefslogtreecommitdiff
path: root/www/src/components/BackArrow.astro
blob: 2d9d3332fe468080d9fae979ce6f554ea2726fba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
interface Props {
    url: string
    title: string
}
const { url, title } = Astro.props
---
<a href={url}>
    &leftarrow; {title}
</a>
<style>
a {
    display: block;
    margin-top: 2rem;
}
</style>