refacactor: tidying up server entrypoint

This commit is contained in:
Per Stark
2025-02-18 13:26:06 +01:00
parent 1353da5641
commit ab52616c8b
13 changed files with 259 additions and 218 deletions

View File

@@ -1,6 +1,6 @@
{% extends 'documentation/base.html' %}
{% block article %}
<h2>Mobile Friendly Ingression: How to Submit Content from iOS to Minne</h2>
<h1>Mobile Friendly Ingression: How to Submit Content from iOS to Minne</h1>
<p>Minne is built with simplicity in mind. Whether you wish to save a file, capture a thought, or share a page,
submitting content is effortless. Our server provides API access that enables users to perform actions using a
personalized API key.</p>

View File

@@ -4,7 +4,10 @@
<!-- Hero Section -->
<h1
class="text-5xl sm:text-6xl py-4 pt-10 font-extrabold bg-linear-to-r from-primary to-secondary text-transparent bg-clip-text font-satoshi">
Simplify Your Knowledge Management
Your Second Brain, Built to Remember
<div class="text-xl font-light mt-4">
Minne <span class="text-base-content opacity-70">/ˈmɪnɛ/ [Swedish: memory]</span>
</div>
</h1>
<p class="text-xl ">
Capture, connect, and retrieve your knowledge effortlessly with Minne

View File

@@ -11,11 +11,18 @@ hx-swap="outerHTML"
<div class="form-control">
<label class="floating-label">
<span class="label-text">Entity Name</span>
<span class="label-text">Name</span>
<input type="text" name="name" value="{{ entity.name }}" class="input input-bordered w-full">
</label>
</div>
<div class="form-control">
<label class="floating-label">
<span class="label-text">Type</span>
<input type="text" name="name" value="{{ entity.entity_type}}" class="input input-bordered w-full">
</label>
</div>
<input type="text" name="id" value="{{ entity.id }}" class="hidden">
<div class="form-control">

View File

@@ -1,4 +1,4 @@
<div class="grid sm:grid-cols-2 md:grid-cols-3 gap-4" id="entity-list">
<div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-4" id="entity-list">
{% for entity in entities %}
<div class="card min-w-72 bg-base-100 shadow">
<div class="card-body">