MLDSAI / puterbot_web

Landing page for puterbot.com
0 stars 0 forks source link

Update website #1

Closed abrichr closed 1 year ago

abrichr commented 1 year ago
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="styles.css">
  <title>PuterBot - Automate Your Workflows</title>
</head>
<body>
  <header>
    <h1>Welcome to PuterBot.com - The Future of Workflow Automation</h1>
    <h2>Automate your workflows. Share and sell your automations.</h2>
    <button>Get Started Now</button>
  </header>

  <section id="intro">
    <h3>Introducing PuterBot: The Next-Gen Workflow Automation Tool</h3>
    <p>PuterBot is a revolutionary desktop app designed to help professionals and hobbyists create, share, and sell custom workflow automations. By observing your screenshots and user input events, PuterBot learns to automate repetitive tasks with minimal user intervention. Once your automation is ready, you can securely and privately share it with coworkers or sell it on our marketplace, empowering others to save time and effort on everyday tasks.</p>
  </section>

  <section id="use-cases">
    <h3>Unleash the Power of Automation Across Industries</h3>
    <div class="use-case">
      <img src="healthcare-icon.png" alt="Healthcare Icon">
      <h4>Healthcare</h4>
      <p>Streamline patient records management, automate appointment scheduling, and facilitate seamless communication between healthcare professionals and patients.</p>
    </div>
    <div class="use-case">
      <img src="marketing-icon.png" alt="Marketing Icon">
      <h4>Marketing</h4>
      <p>Automate repetitive tasks like social media posting, ad campaign management, and content curation, freeing up time for creative and strategic thinking.</p>
    </div>
    <div class="use-case">
      <img src="product-dev-icon.png" alt="Product Development Icon">
      <h4>Product Development</h4>
      <p>Simplify project management, enhance collaboration, and expedite prototype testing, driving innovation and efficiency in your product development process.</p>
    </div>
  </section>

  <section id="marketplace">
    <h3>The PuterBot Marketplace: Buy, Sell, and Share Automations</h3>
    <div class="marketplace-feature">
      <img src="discover-icon.png" alt="Discover Icon">
      <h4>Discover</h4>
      <p>Find the perfect automation to streamline your workflow, designed by experts in your industry.</p>
    </div>
    <div class="marketplace-feature">
      <img src="sell-icon.png" alt="Sell Icon">
      <h4>Sell</h4>
      <p>Monetize your expertise by selling your custom automations to professionals seeking solutions.</p>
    </div>
    <div class="marketplace-feature">
      <img src="share-icon.png" alt="Share Icon">
      <h4>
<p>Collaborate with coworkers and colleagues by securely sharing your automations to improve team efficiency.</p>
</div>
<button>Explore the Marketplace</button>

  </section>
  <footer>
    <ul>
      <li><a href="#">Download PuterBot App</a></li>
      <li><a href="#">About Us</a></li>
      <li><a href="#">Contact</a></li>
      <li><a href="#">FAQ</a></li>
      <li><a href="#">Terms of Service</a></li>
      <li><a href="#">Privacy Policy</a></li>
    </ul>
  </footer>
</body>
</html>

css

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

header {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

header h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

button {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background: #666;
}

section {
  padding: 20px;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}

.use-cases,
.marketplace {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

footer {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
}

footer ul {
  list-style: none;
}

footer li {
  display: inline;
  margin-right: 10px;
}

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

footer a:hover {
  color: #666;
}

Include the following links to Tailwind CSS and Animate.css in the <head> section of your "index.html" file:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/3.0.24/tailwind.min.css" integrity="sha384-roroI3WR4pA4tKJg/xhtml0n0hQDzR+xS0Qvz8OyFSLTgCkDyGcPfjc8fZwJncMCI" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />

Add the following code for the email signup form in the desired location within your "index.html" file:

<section id="email-signup" class="bg-gray-200 py-10">
  <div class="container mx-auto px-4">
    <h3 class="text-center font-bold text-2xl mb-6">Stay Updated with PuterBot</h3>
    <p class="text-center mb-8">Subscribe to our newsletter to receive the latest news, updates, and special offers.</p>
    <form class="max-w-md mx-auto">
      <div class="animate__animated animate__fadeInDown mb-4">
        <input type="email" placeholder="Your Email Address" class="bg-white w-full p-3 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-400" required>
      </div>
      <div class="animate__animated animate__fadeInUp">
        <button type="submit" class="w-full py-3 bg-blue-500 text-white font-bold rounded-md hover:bg-blue-600 transition-colors">Subscribe</button>
      </div>
    </form>
  </div>
</section>
.container {
  max-width: 1280px;
  margin: 0 auto;
}
abrichr commented 1 year ago

https://openadapt.ai/