Initial PoC commit

This commit is contained in:
Fenix
2026-01-28 20:39:59 -08:00
commit 94811ca7c1
18 changed files with 1831 additions and 0 deletions

34
menu.html Normal file
View File

@@ -0,0 +1,34 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Menu Pen2Post</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="journal.css">
</head>
<body>
<div class="notes-container">
<div class="top-buttons">
<button class="floating-button" onclick="goBackToApp()" aria-label="Back to app">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path fill="currentColor" d="M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
</svg>
</button>
</div>
<main class="page-main">
<h1>Menu</h1>
<nav class="side-menu-nav">
<a href="about.html">About This App</a>
<a href="start.html">Quick Start</a>
<a href="help.html">Help &amp; Tips</a>
<a href="credits.html">Credits &amp; Rewards</a>
<a href="legal.html">Legal Stuff</a>
<a href="feedback.html">Feedback</a>
</nav>
</main>
</div>
<script src="journal.js"></script>
</body>
</html>