Files
pen2post/menu.html
2026-01-28 20:39:59 -08:00

34 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>