This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/web/src/pages/copyright.astro
2025-11-19 11:48:29 +13:00

24 lines
750 B
Plaintext

---
import Base from "src/layout/Base.astro"
import Sidebar from "src/components/sidebar.astro"
---
<Base meta={{title: "copyright"}}>
<div slot="content">
<p class="text-xl">Copyright & License</p>
<p>© 2023-{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>
</Base>