summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/Footer.astro
blob: 08395a4d1f8cc4da365d3a781abbd1e53c3cd40e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
const today = new Date();
---

<footer>
	&copy; {today.getFullYear()} YOUR NAME HERE. All rights reserved.
</footer>
<style>
	footer {
		padding: 25px;
		text-align: center;
	}
</style>