Skip to content

Commit

Permalink
Add GitHub Pages viewer to docs directory
Browse files Browse the repository at this point in the history
  • Loading branch information
HarleyCoops committed Jan 26, 2025
1 parent 91925c5 commit 844bee9
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions Docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantum Prompt Documentation</title>
<!-- Twitter Card metadata -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Quantum Prompt Documentation">
<meta name="twitter:description" content="Mathematical documentation for quantum computing prompts and algorithms">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
}
.container {
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pdf-container {
width: 100%;
height: 800px;
margin: 20px 0;
}
.download-btn {
display: inline-block;
padding: 10px 20px;
background: #0366d6;
color: white;
text-decoration: none;
border-radius: 4px;
margin-top: 20px;
}
.download-btn:hover {
background: #0255b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Quantum Prompt Documentation</h1>
<p>View and download the documentation for quantum computing prompts and algorithms.</p>

<embed src="quantumprompt.pdf" type="application/pdf" class="pdf-container">

<a href="quantumprompt.pdf" class="download-btn" download>Download PDF</a>
</div>
</body>
</html>

0 comments on commit 844bee9

Please sign in to comment.