-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
6 changed files
with
68 additions
and
20 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
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
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
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
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
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 |
---|---|---|
@@ -1,55 +1,99 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Effortless - Home</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="stylesheet" href="home.css"> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<link rel="stylesheet" href="home.css" /> | ||
<script src="templating.js"></script> | ||
<script src="home.js"></script> | ||
<link rel="icon" type="image/png" href="favicon.ico"> | ||
<link rel="icon" type="image/png" href="../favicon.ico" /> | ||
</head> | ||
<body> | ||
<div class="arrow up-arrow" id="upArrow">↑</div> <!-- Up arrow --> | ||
<div class="arrow up-arrow" id="upArrow">↑</div> | ||
<!-- Up arrow --> | ||
<div class="section" id="section1"> | ||
<img src="./images/bannerlogotextright.png" alt="Effortless Logo" class="banner-logo"> | ||
<img | ||
src="./images/bannerlogotextright.png" | ||
alt="Effortless Logo" | ||
class="banner-logo" | ||
/> | ||
<h1 class="feature">Databases should be <i>Effortless</i>.</h1> | ||
</div> | ||
<div class="section" id="section2"> | ||
<h2>What is Effortless?</h2> | ||
<p>Effortless is a user-friendly database solution designed to simplify data management for everyone. It's a powerful tool that makes working with databases accessible to beginners while providing advanced features for experienced developers.</p> | ||
<p> | ||
Effortless is a user-friendly database solution designed to | ||
simplify data management for everyone. It's a powerful tool that | ||
makes working with databases accessible to beginners while | ||
providing advanced features for experienced developers. | ||
</p> | ||
</div> | ||
<div class="section" id="section3"> | ||
<h2>Why Choose Effortless?</h2> | ||
<ul> | ||
<li><strong>Simplicity:</strong> Effortless makes database management straightforward for users of all skill levels.</li> | ||
<li><strong>Power:</strong> Find exactly what you need with our advanced object-oriented filtering system.</li> | ||
<li><strong>Security:</strong> Your data can be protected with automatic backups and encryption.</li> | ||
<li> | ||
<strong>Simplicity:</strong> Effortless makes database | ||
management straightforward for users of all skill levels. | ||
</li> | ||
<li> | ||
<strong>Power:</strong> Find exactly what you need with our | ||
advanced object-oriented filtering system. | ||
</li> | ||
<li> | ||
<strong>Security:</strong> Your data can be protected with | ||
automatic backups and encryption. | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="section" id="section4"> | ||
<h2>Who Can Benefit from Effortless?</h2> | ||
<ul> | ||
<li><strong>Students:</strong> Learn database concepts with a gentle learning curve.</li> | ||
<li><strong>Educators:</strong> Teach database management without the complexity of traditional systems.</li> | ||
<li><strong>Developers:</strong> Rapidly prototype ideas and manage data for small to medium-sized projects.</li> | ||
<li> | ||
<strong>Students:</strong> Learn database concepts with a | ||
gentle learning curve. | ||
</li> | ||
<li> | ||
<strong>Educators:</strong> Teach database management | ||
without the complexity of traditional systems. | ||
</li> | ||
<li> | ||
<strong>Developers:</strong> Rapidly prototype ideas and | ||
manage data for small to medium-sized projects. | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="section" id="section5"> | ||
<h2>Getting Started</h2> | ||
<p>Getting started with Effortless is simple. While it's primarily a Python library, its concepts can be understood by anyone interested in data management. For those ready to dive in, Effortless can be installed and set up in just a few minutes.</p> | ||
<p> | ||
Getting started with Effortless is simple. While it's primarily | ||
a Python library, its concepts can be understood by anyone | ||
interested in data management. For those ready to dive in, | ||
Effortless can be installed and set up in just a few minutes. | ||
</p> | ||
<div class="button-container"> | ||
<a href="docs/quickstart.html" class="tab tab-forward">Quickstart</a> | ||
<a href="docs/quickstart.html" class="tab tab-forward" | ||
>Quickstart</a | ||
> | ||
</div> | ||
</div> | ||
<div class="section" id="section6"> | ||
<h2>Join the Effortless Community</h2> | ||
<p>Become part of the growing Effortless community. Share your experiences, ask questions, and contribute to the development of this innovative database solution.</p> | ||
<p> | ||
Become part of the growing Effortless community. Share your | ||
experiences, ask questions, and contribute to the development of | ||
this innovative database solution. | ||
</p> | ||
<div class="button-container"> | ||
<a href="https://github.com/bboonstra/Effortless" class="tab tab-forward">View on GitHub</a> | ||
<a | ||
href="https://github.com/bboonstra/Effortless" | ||
class="tab tab-forward" | ||
>View on GitHub</a | ||
> | ||
</div> | ||
</div> | ||
<div class="arrow down-arrow" id="downArrow">↓</div> <!-- Down arrow --> | ||
<div class="arrow down-arrow" id="downArrow">↓</div> | ||
<!-- Down arrow --> | ||
</body> | ||
</html> |