App content/copy/links #77

Merged
raucao merged 4 commits from ui/copy into master 2026-08-19 18:03:59 +00:00
3 changed files with 63 additions and 7 deletions
+42 -6
View File
@@ -34,6 +34,15 @@ import Icon from '#components/icon';
>remote storage</a> >remote storage</a>
to sync place bookmarks across apps and devices. to sync place bookmarks across apps and devices.
</p> </p>
<p>
Connect your
<a
href="https://start.nostr.net"
target="_blank"
rel="noopener"
>Nostr</a>
identity to publish photos of places.
</p>
<details> <details>
<summary> <summary>
@@ -91,6 +100,26 @@ import Icon from '#components/icon';
</a> </a>
</td> </td>
</tr> </tr>
<tr>
<td>
<a
href="https://openfreemap.org"
target="_blank"
rel="noopener"
>
Map tiles
</a>
</td>
<td>
<a
href="https://github.com/hyperknot/openfreemap/blob/main/LICENSE.md"
target="_blank"
rel="noopener"
>
Various
</a>
</td>
</tr>
<tr> <tr>
<td> <td>
<a <a
@@ -139,13 +168,20 @@ import Icon from '#components/icon';
<div class="details-content"> <div class="details-content">
<p> <p>
<strong>Most impactful:</strong> <strong>Most impactful:</strong>
Add and improve data for points of interest in
<a
href="https://www.openstreetmap.org"
target="_blank"
rel="noopener"
>OpenStreetMap</a>.
</p> </p>
<ul>
<li>
Add and improve data for points of interest in
<a
href="https://www.openstreetmap.org"
target="_blank"
rel="noopener"
>OpenStreetMap</a>.
</li>
<li>
Add place photos with your Nostr account.
</li>
</ul>
<p> <p>
<strong>Most appreciated:</strong> <strong>Most appreciated:</strong>
Use this app as much as you can and Use this app as much as you can and
+2 -1
View File
@@ -32,7 +32,8 @@ import restoreScroll from '../modifiers/restore-scroll';
Connect your Nostr account to see your contributions. Connect your Nostr account to see your contributions.
</p> </p>
{{else if (not @items.length)}} {{else if (not @items.length)}}
<p class="empty-state">No contributions yet.</p> <p class="empty-state">No contributions yet. Start by adding photos to
places.</p>
{{else}} {{else}}
<ul class="contributions-list"> <ul class="contributions-list">
{{#each @items as |item|}} {{#each @items as |item|}}
+19
View File
@@ -752,6 +752,25 @@ select.form-control {
text-decoration: underline; text-decoration: underline;
} }
.about-section p + ul {
margin-top: 0.25rem;
}
.about-section ul {
padding-inline-start: 1.2em;
margin: 0.5rem 0 0;
}
.about-section li {
padding-inline-start: 0.5rem;
margin-block: 0.15rem;
}
.about-section li::marker {
content: '♥';
color: #898989;
}
.btn-full { .btn-full {
width: 100%; width: 100%;
} }