feat: Update Sidebar and Dashboard page

- Remove SidebarDrawer
    - Add CampfirePanelBar
    - Fix navigation links
    - Add blog files
    - Add aggregator file
    - Update Dashboard.jsx to display blog post links
    - Add Copyright info
This commit is contained in:
2025-09-21 22:43:55 -05:00
parent 591b113175
commit e2bef55a3f
20 changed files with 1060 additions and 26 deletions

View File

@@ -0,0 +1,20 @@
// Copyright.jsx
import React from "react";
export default function Copyright() {
return (
<div
style={{
textAlign: "center",
marginTop: "1rem",
}}
>
<p>
&copy; Derek L. Seitz |{" "}
<a href="https://dlseitz.dev" target="_blank" rel="noopener noreferrer" class="k-link">
dlseitz.dev
</a>
</p>
</div>
);
}