add copyright page

This commit is contained in:
2025-11-14 11:36:51 +13:00
parent 2e6b1eb335
commit 54430fa3f4
2 changed files with 31 additions and 0 deletions

View File

@@ -12,6 +12,10 @@ const links = [
txt: "email",
lnk: "mailto:contact@breadone.net"
},
{
txt: "copyright",
lnk: "/copyright"
}
]
---

View File

@@ -0,0 +1,27 @@
---
import Base from "src/layout/Base.astro"
import Sidebar from "src/components/sidebar.astro"
---
<Base>
<div class="flex flex-row">
<Sidebar/>
<div class="content-panel">
<p class="text-xl">Copyright & License</p>
<p>© {new Date().getFullYear()} breadone.net. All Rights Reserved.</p>
<p>
All content on this website, including but not limited to text, images,
photographs, and code, is protected by copyright law. No part of this
website may be reproduced, distributed, or transmitted in any form or
by any means without the prior written permission of the author.
</p>
<br>
<p>
For permission requests, please <a href="mailto:contact@breadone.net">email</a> me.
</p>
</div>
</div>
</Base>