added canvas board on index.md
parent
e6c47a4326
commit
966ce7710f
|
@ -24,6 +24,45 @@ hide:
|
|||
<br>
|
||||
</div>
|
||||
---
|
||||
|
||||
##THE SMARTUPS THAT ARE ACTIVE:
|
||||
---
|
||||
<div class="kanban-board" markdown>
|
||||
|
||||
<div class="kanban-column" markdown>
|
||||
<div class="kanban-header" markdown>:material-flask: Validation</div>
|
||||
|
||||
<div class="kanban-card" markdown>
|
||||
!!! tip inline end "Smartup Zero"
|
||||
Tech: ONLIFE<br>
|
||||
:material-book: [OSBP](#one-pager)
|
||||
:material-wallet-membership: [JOIN](https://opencollective.com/smartup-zero)
|
||||
:material-list-status: Status:<br>
|
||||
Active since 1-8-2025<br>
|
||||
Hiring Team Captains
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="kanban-column" markdown>
|
||||
<div class="kanban-header" markdown>:simple-materialdesignicons: Design</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="kanban-column" markdown>
|
||||
<div class="kanban-header" markdown>:material-hammer: Development</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="kanban-column" markdown>
|
||||
<div class="kanban-header" markdown>:material-office-building: Organisation</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
# :material-flask: TIMELINE0
|
||||
|
||||
!!! info "What is this?"
|
||||
|
|
|
@ -302,7 +302,48 @@ blockquote {
|
|||
}
|
||||
|
||||
|
||||
|
||||
/* === 11. Kanban board style === */
|
||||
|
||||
/* Kanban Board Styles */
|
||||
.kanban-board {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 1rem;
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.kanban-column {
|
||||
background: var(--md-default-bg-color);
|
||||
border: 1px solid var(--md-default-fg-color--lightest);
|
||||
border-radius: 0.5rem;
|
||||
padding: 1rem;
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.kanban-header {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 2px solid var(--md-primary-fg-color);
|
||||
}
|
||||
|
||||
.kanban-card {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/* Mobile responsive */
|
||||
@media screen and (max-width: 76.25em) {
|
||||
.kanban-board {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 48em) {
|
||||
.kanban-board {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
|
||||
*[Official Smartup Business Plan (OSBP)]: A living, version-controlled document recording strategy, team assessments, design blueprints, and validation metrics. It serves as the collective constitution of a Smartup.
|
||||
|
||||
*[ONLIFE]: First pilot project of Smartup Zero—an open-source emergency mesh network prototype for smartphones that functions when all other networks fail.
|
||||
*[ONLIFE]: First pilot project of the Smartup model (Smartup Zero) —an open-source emergency mesh network protocol for smartphones that functions when all other networks fail to help citizens during all kinds of disasters or cyberattacks.
|
||||
|
||||
*[Open Collective EU]: The transparent fiscal host for Smartup Zero, managing crowdfunding, budgets, and payouts. All transactions are publicly visible.
|
||||
|
||||
|
@ -82,7 +82,7 @@
|
|||
|
||||
*[Organization (Phase Four)]: Final creation phase where structure is solidified, business plan finalized, and product prepared for market launch.
|
||||
|
||||
*[Phases of Creation]: Five required stages: Micro-Pilot, Validation, Design, Production, and Organization.
|
||||
*[ 4 Phases of Creation]: Five required stages: Micro-Pilot, Validation, Design, Production, and Organization.
|
||||
|
||||
*[Production (Phase Three)]: The phase focused on building the MVP, beta testing, and market assessment.
|
||||
|
||||
|
@ -171,3 +171,5 @@
|
|||
*[TTL]: Time to live, a predefined amount of time in which a message or node is deemed valid or active.
|
||||
*[UDP]: User Datagram Protocol.
|
||||
*[UUID]: Universally unique identifier an identifier used to create a unique name for identification.
|
||||
|
||||
*[OSBP]: A living, version-controlled document recording strategy, team assessments, design blueprints, and validation metrics. It serves as the collective constitution of a Smartup.
|
||||
|
|
Loading…
Reference in New Issue