-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd3b753
commit c0ade55
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>VortexNotes</title> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> | ||
</head> | ||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<a class="navbar-brand" href="#">VortexNotes</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav ml-auto"> | ||
<li class="nav-item active"> | ||
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#">Features</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#">Getting Started</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#">Contributing</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
<div class="container mt-5"> | ||
<h1>VortexNotes</h1> | ||
|
||
<p>VortexNotes is a unique web-based note-taking software that offers a different approach to managing your notes.</p> | ||
|
||
<h2>Introduction</h2> | ||
|
||
<p>VortexNotes is designed to be a simple yet powerful note-taking tool. It provides users with a single entry point to submit new content without the need for note organization or management features. It serves as a "black hole" for your notes, where you can simply paste your content and let it disappear into the void.</p> | ||
|
||
<h2>Features</h2> | ||
|
||
<ul> | ||
<li><strong>Submit and Forget</strong>: With VortexNotes, there is no need to worry about organizing or managing your notes. Simply paste your content into the application, and it will be absorbed into the void, never to be seen again.</li> | ||
<li><strong>Effortless Searching</strong>: VortexNotes offers a search interface that allows you to quickly find specific notes. Despite the lack of note management, the powerful search feature enables you to retrieve your desired content effortlessly.</li> | ||
<li><strong>Clean and Minimalistic</strong>: The user interface of VortexNotes is designed to be clean and minimalistic, focusing solely on the note submission and search functionalities. This ensures a distraction-free environment for your note-taking.</li> | ||
</ul> | ||
|
||
<h2>Getting Started</h2> | ||
<ol> | ||
<li>Clone this repository.</li> | ||
<li>Install the necessary dependencies.</li> | ||
<li>Run the application.</li> | ||
<li>Access the application via the provided URL in your web browser.</li> | ||
<li>Paste your content into the submission field and let it disappear into the void.</li> | ||
<li>Use the search interface to retrieve your notes when needed.</li> | ||
</ol> | ||
|
||
<h2>Contributing</h2> | ||
|
||
<p>Contributions are welcome! If you have any ideas, suggestions, or bug reports, please open an issue or submit a pull request.</p> | ||
</div> | ||
|
||
<footer class="bg-light text-center py-4 mt-5"> | ||
<p>© 2023 VortexNotes. All rights reserved.</p> | ||
</footer> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |