add copyright page
This commit is contained in:
@@ -12,6 +12,10 @@ const links = [
|
||||
txt: "email",
|
||||
lnk: "mailto:contact@breadone.net"
|
||||
},
|
||||
{
|
||||
txt: "copyright",
|
||||
lnk: "/copyright"
|
||||
}
|
||||
]
|
||||
---
|
||||
|
||||
|
||||
27
web/src/pages/copyright.astro
Normal file
27
web/src/pages/copyright.astro
Normal 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>
|
||||
Reference in New Issue
Block a user