Skip to content

Commit

Permalink
feat(General): Adding all files
Browse files Browse the repository at this point in the history
  • Loading branch information
Estrada Irribarra, Rodrigo Andres committed Oct 13, 2024
1 parent 9ba0509 commit f68a02b
Show file tree
Hide file tree
Showing 19 changed files with 1,594 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Ignore virtual environments
.venv/
venv/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) [2024] [Rodrigo Andrés Estrada Irribarra]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Empty file added MANIFEST.in
Empty file.
Binary file added docs/img/log.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
109 changes: 109 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="StoryCraftr - Your AI-powered Book Creation Assistant">
<title>StoryCraftr - Write Your Story with AI</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
text-align: center;
color: #333;
}

header {
background-color: #4A90E2;
color: #fff;
padding: 2em 0;
}

header img {
max-width: 150px;
}

h1 {
font-size: 2.5em;
margin-bottom: 0.5em;
}

p {
font-size: 1.2em;
line-height: 1.6em;
}

section {
padding: 3em 1.5em;
}

.button {
background-color: #4A90E2;
color: white;
padding: 0.8em 2em;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
margin-top: 1em;
display: inline-block;
}

.button:hover {
background-color: #357ABD;
}

footer {
margin-top: 2em;
padding: 2em 0;
background-color: #333;
color: #fff;
}

footer a {
color: #4A90E2;
text-decoration: none;
}

footer a:hover {
color: #fff;
}
</style>
</head>
<body>

<header>
<img src="../docs/img/logo.png" alt="StoryCraftr Logo">
<h1>Welcome to StoryCraftr 📚✨</h1>
<p>Write your stories with the power of AI</p>
</header>

<section>
<h2>Why StoryCraftr?</h2>
<p>
Whether you're a seasoned writer or just starting out, StoryCraftr helps you create intricate worlds 🌍,
develop compelling characters 🦸‍♂️, and generate seamless story outlines 📝 and full-length chapters 📖
with ease.
</p>
<p>Let AI guide your creative process while you focus on your unique vision.</p>

<a href="https://github.com/your-repo/storycraftr" class="button">Explore the Code on GitHub</a>
</section>

<section>
<h2>Join Our Community 🚀</h2>
<p>
StoryCraftr is a collaborative effort, and we need you to help shape the future of writing!
Whether you're a developer, writer, or simply passionate about storytelling, you can make a difference.
</p>
<a href="https://github.com/your-repo/storycraftr/CONTRIBUTING.md" class="button">Contribute Now</a>
</section>

<footer>
<p>Follow us on <a href="https://twitter.com/storycraftr">Twitter</a> for the latest updates</p>
<p>&copy; 2024 StoryCraftr</p>
</footer>

</body>
</html>
Empty file added examples/example_usage.md
Empty file.
Loading

0 comments on commit f68a02b

Please sign in to comment.