34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!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 & Tips</a>
|
||
<a href="credits.html">Credits & 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> |