WIP Session 1

This commit is contained in:
schriefer
2024-06-07 12:47:45 +02:00
parent 56af64a7a4
commit 5bfe59a71f
6 changed files with 642 additions and 0 deletions

116
html/chat1/index.html Normal file
View File

@@ -0,0 +1,116 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DataDash</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Welcome to DataDash! 👋</h1>
<p>The place to launch and discover new Datasets and web-api's.</p>
</header>
<section class="top-products">
<h2>Top Products Launching Today</h2>
<p>For the first 4 hours of the day, we're hiding upvotes to help every product get a chance to catch your interest.</p>
<div class="product-list">
<div class="product">
<div class="product-info">
<div class="icon standup"></div>
<div class="details">
<h3>Standup</h3>
<p>Simply daily accountability phone call, powered by AI</p>
<div class="tags">
<span>Q 2</span>
<span>Productivity</span>
</div>
</div>
</div>
<div class="upvote">
<button></button>
<button></button>
</div>
</div>
<div class="product">
<div class="product-info">
<div class="icon tori"></div>
<div class="details">
<h3>Tori</h3>
<p>The simple mobile crypto wallet even your mom can use</p>
<div class="tags">
<span>Q 1</span>
<span>Fintech</span>
<span>Crypto</span>
<span>Cryptocurrency</span>
</div>
</div>
</div>
<div class="upvote">
<button></button>
<button></button>
</div>
</div>
<div class="product">
<div class="product-info">
<div class="icon tyms"></div>
<div class="details">
<h3>Tyms</h3>
<p>Modern accounting ERP for ambitious businesses</p>
<div class="tags">
<span>Q 2</span>
<span>Android</span>
<span>Artificial Intelligence</span>
<span>Accounting</span>
</div>
</div>
</div>
<div class="upvote">
<button></button>
<button></button>
</div>
</div>
<div class="product">
<div class="product-info">
<div class="icon zapcardz"></div>
<div class="details">
<h3>ZapCardz</h3>
<p>Remember what you learn forever with AI powered flashcards</p>
<div class="tags">
<span>Q 6</span>
<span>Solo maker</span>
<span>Bootstrapped</span>
<span>Productivity</span>
</div>
</div>
</div>
<div class="upvote">
<button></button>
<button></button>
</div>
</div>
<div class="product">
<div class="product-info">
<div class="icon peek"></div>
<div class="details">
<h3>Peek</h3>
<p>AI organizer and workspace for your browser tabs</p>
<div class="tags">
<span>Q 15</span>
<span>Solo maker</span>
<span>Bootstrapped</span>
<span>Productivity</span>
</div>
</div>
</div>
<div class="upvote">
<button></button>
<button></button>
</div>
</div>
</div>
</section>
</div>
</body>
</html>