feat: redesign LinksGrid with semantic theming, rounded corners, and new layout
Some checks failed
CI / update (push) Has been cancelled
Some checks failed
CI / update (push) Has been cancelled
- Use semantic CSS variables (--color-surface, --shadow-sm, etc.) instead of hardcoded Nord values and manual dark mode overrides - Add border-radius and overflow:hidden for rounded card corners - Move icon fill variables (--grid-fill-*) into app.css theme system: colorful (red/orange/green) in light, cool blues in dark - Mottled fill distribution via prime-offset nth-child selectors - Reorder homepage links: Recipes, Shopping, Fitness, Faith, Tasks first - Add Nutrition direct link with heart-pulse icon - Document site-wide design language in CLAUDE.md
This commit is contained in:
35
CLAUDE.md
35
CLAUDE.md
@@ -83,6 +83,41 @@ Re-create the chart on theme change via `MutationObserver` on `data-theme` + `ma
|
|||||||
### Toggle component
|
### Toggle component
|
||||||
Use `Toggle.svelte` (iOS-style) instead of raw `<input type="checkbox">` for user-facing boolean switches.
|
Use `Toggle.svelte` (iOS-style) instead of raw `<input type="checkbox">` for user-facing boolean switches.
|
||||||
|
|
||||||
|
## Site-Wide Design Language
|
||||||
|
|
||||||
|
### Layout & Spacing
|
||||||
|
- Max content width: `1000px`–`1200px` with `margin-inline: auto`
|
||||||
|
- Card/grid gaps: `2rem` desktop, `1rem` tablet, `0.5rem` mobile
|
||||||
|
- Breakpoints: `410px` (small mobile), `560px` (tablet), `900px` (rosary), `1024px` (desktop)
|
||||||
|
|
||||||
|
### Border Radius Tokens
|
||||||
|
- `--radius-pill: 1000px` — nav bar, pill buttons
|
||||||
|
- `--radius-card: 20px` — major cards (recipe cards)
|
||||||
|
- `--radius-lg: 0.75rem` — medium rounded elements
|
||||||
|
- `--radius-md: 0.5rem` — standard rounding
|
||||||
|
- `--radius-sm: 0.3rem` — small elements
|
||||||
|
|
||||||
|
### Shadow Tokens
|
||||||
|
- `--shadow-sm` / `--shadow-md` / `--shadow-lg` / `--shadow-hover` — use these, don't hardcode
|
||||||
|
- Shadows are spread-based (`0 0 Xem Yem`) not offset-based
|
||||||
|
|
||||||
|
### Hover & Interaction Patterns
|
||||||
|
- Cards/links: `scale: 1.02` + shadow elevation on hover
|
||||||
|
- Tags/pills: `scale: 1.05` with `--transition-fast` (100ms)
|
||||||
|
- Standard transitions: `--transition-normal` (200ms)
|
||||||
|
- Nav bar: glassmorphism (`backdrop-filter: blur(16px)`, semi-transparent bg)
|
||||||
|
|
||||||
|
### Typography
|
||||||
|
- Font stack: Helvetica, Arial, "Noto Sans", sans-serif
|
||||||
|
- Size tokens: `--text-sm` through `--text-3xl`
|
||||||
|
- Headings in grids: `1.5rem` desktop → `1.2rem` tablet → `0.95rem` mobile
|
||||||
|
|
||||||
|
### Surfaces & Cards
|
||||||
|
- Use `--color-surface` / `--color-surface-hover` for card backgrounds
|
||||||
|
- Use `--color-bg-elevated` for hover/active states
|
||||||
|
- Recipe cards: 300px wide, `--radius-card` corners
|
||||||
|
- Global utility classes: `.g-icon-badge` (circular), `.g-pill` (pill-shaped)
|
||||||
|
|
||||||
## Versioning
|
## Versioning
|
||||||
|
|
||||||
When committing, bump version numbers as appropriate using semver:
|
When committing, bump version numbers as appropriate using semver:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "homepage",
|
"name": "homepage",
|
||||||
"version": "1.21.2",
|
"version": "1.22.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
17
src/app.css
17
src/app.css
@@ -152,6 +152,12 @@
|
|||||||
|
|
||||||
/* Shopping icon filter — white PNGs need invert in light mode */
|
/* Shopping icon filter — white PNGs need invert in light mode */
|
||||||
--shopping-icon-filter: invert(1);
|
--shopping-icon-filter: invert(1);
|
||||||
|
|
||||||
|
/* LinksGrid icon fills — colorful in light */
|
||||||
|
--grid-fill-base: var(--nord10);
|
||||||
|
--grid-fill-pop-a: var(--nord11);
|
||||||
|
--grid-fill-pop-b: var(--nord12);
|
||||||
|
--grid-fill-pop-c: var(--nord14);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ============================================
|
/* ============================================
|
||||||
@@ -217,6 +223,12 @@
|
|||||||
--color-link-hover: var(--nord7);
|
--color-link-hover: var(--nord7);
|
||||||
|
|
||||||
--shopping-icon-filter: none;
|
--shopping-icon-filter: none;
|
||||||
|
|
||||||
|
/* LinksGrid icon fills — cool blues/whites in dark */
|
||||||
|
--grid-fill-base: var(--nord8);
|
||||||
|
--grid-fill-pop-a: var(--nord9);
|
||||||
|
--grid-fill-pop-b: var(--nord7);
|
||||||
|
--grid-fill-pop-c: var(--nord4);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -268,6 +280,11 @@
|
|||||||
--color-link-hover: var(--nord7);
|
--color-link-hover: var(--nord7);
|
||||||
|
|
||||||
--shopping-icon-filter: none;
|
--shopping-icon-filter: none;
|
||||||
|
|
||||||
|
--grid-fill-base: var(--nord8);
|
||||||
|
--grid-fill-pop-a: var(--nord9);
|
||||||
|
--grid-fill-pop-b: var(--nord7);
|
||||||
|
--grid-fill-pop-c: var(--nord4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ============================================
|
/* ============================================
|
||||||
|
|||||||
@@ -1,20 +1,6 @@
|
|||||||
<style>
|
<style>
|
||||||
|
|
||||||
.links_grid {
|
.links_grid {
|
||||||
/* Light mode card palette */
|
|
||||||
--card-bg-a: var(--nord6);
|
|
||||||
--card-bg-b: var(--nord5);
|
|
||||||
--card-bg-c: var(--nord6);
|
|
||||||
--card-bg-d: var(--nord5);
|
|
||||||
--card-fill-a: var(--nord11);
|
|
||||||
--card-fill-b: var(--nord10);
|
|
||||||
--card-fill-c: var(--nord0);
|
|
||||||
--card-fill-d: var(--nord0);
|
|
||||||
--card-text: var(--nord0);
|
|
||||||
--card-shadow: rgba(0,0,0,0.04);
|
|
||||||
--card-shadow-hover: rgba(0,0,0,0.1);
|
|
||||||
--card-lock: var(--nord3);
|
|
||||||
|
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(min(250px, calc(50% - 1rem)), 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(min(250px, calc(50% - 1rem)), 1fr));
|
||||||
gap: 2rem;
|
gap: 2rem;
|
||||||
@@ -23,70 +9,19 @@
|
|||||||
padding: 2rem 1rem;
|
padding: 2rem 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
/* Base fill for all icons */
|
||||||
.links_grid {
|
:global(.links_grid a svg:not(.lock-icon)) {
|
||||||
--card-bg-a: #1a1a1a;
|
fill: var(--grid-fill-base);
|
||||||
--card-bg-b: #1a1a1a;
|
|
||||||
--card-bg-c: var(--nord1);
|
|
||||||
--card-bg-d: #000;
|
|
||||||
--card-fill-a: var(--nord11);
|
|
||||||
--card-fill-b: var(--nord9);
|
|
||||||
--card-fill-c: var(--nord8);
|
|
||||||
--card-fill-d: var(--nord7);
|
|
||||||
--card-text: white;
|
|
||||||
--card-shadow: rgba(0,0,0,0.08);
|
|
||||||
--card-shadow-hover: rgba(0,0,0,0.15);
|
|
||||||
--card-lock: var(--nord3);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
:global(:root[data-theme="dark"]) .links_grid {
|
/* Mottled pops — prime-offset selectors for irregular feel */
|
||||||
--card-bg-a: #1a1a1a;
|
:global(.links_grid a:nth-child(3n+1) svg:not(.lock-icon)) {
|
||||||
--card-bg-b: #1a1a1a;
|
fill: var(--grid-fill-pop-a);
|
||||||
--card-bg-c: var(--nord1);
|
|
||||||
--card-bg-d: #000;
|
|
||||||
--card-fill-a: var(--nord11);
|
|
||||||
--card-fill-b: var(--nord9);
|
|
||||||
--card-fill-c: var(--nord8);
|
|
||||||
--card-fill-d: var(--nord7);
|
|
||||||
--card-text: white;
|
|
||||||
--card-shadow: rgba(0,0,0,0.08);
|
|
||||||
--card-shadow-hover: rgba(0,0,0,0.15);
|
|
||||||
--card-lock: var(--nord3);
|
|
||||||
}
|
}
|
||||||
:global(:root[data-theme="light"]) .links_grid {
|
:global(.links_grid a:nth-child(5n+3) svg:not(.lock-icon)) {
|
||||||
--card-bg-a: var(--nord6);
|
fill: var(--grid-fill-pop-b);
|
||||||
--card-bg-b: var(--nord5);
|
|
||||||
--card-bg-c: var(--nord6);
|
|
||||||
--card-bg-d: var(--nord5);
|
|
||||||
--card-fill-a: var(--nord11);
|
|
||||||
--card-fill-b: var(--nord10);
|
|
||||||
--card-fill-c: var(--nord0);
|
|
||||||
--card-fill-d: var(--nord0);
|
|
||||||
--card-text: var(--nord0);
|
|
||||||
--card-shadow: rgba(0,0,0,0.04);
|
|
||||||
--card-shadow-hover: rgba(0,0,0,0.1);
|
|
||||||
--card-lock: var(--nord3);
|
|
||||||
}
|
}
|
||||||
|
:global(.links_grid a:nth-child(7n) svg:not(.lock-icon)) {
|
||||||
:global(.links_grid a:nth-child(4n)),
|
fill: var(--grid-fill-pop-c);
|
||||||
:global(.links_grid a:nth-child(4n) svg:not(.lock-icon)){
|
|
||||||
background-color: var(--card-bg-a);
|
|
||||||
fill: var(--card-fill-a);
|
|
||||||
}
|
|
||||||
:global(.links_grid a:nth-child(4n+1)),
|
|
||||||
:global(.links_grid a:nth-child(4n+1) svg:not(.lock-icon)){
|
|
||||||
background-color: var(--card-bg-b);
|
|
||||||
fill: var(--card-fill-b);
|
|
||||||
}
|
|
||||||
:global(.links_grid a:nth-child(4n+2)),
|
|
||||||
:global(.links_grid a:nth-child(4n+2) svg:not(.lock-icon)){
|
|
||||||
background-color: var(--card-bg-c);
|
|
||||||
fill: var(--card-fill-c);
|
|
||||||
}
|
|
||||||
:global(.links_grid a:nth-child(4n+3)),
|
|
||||||
:global(.links_grid a:nth-child(4n+3) svg:not(.lock-icon)){
|
|
||||||
background-color: var(--card-bg-d);
|
|
||||||
fill: var(--card-fill-d);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
:global(.links_grid a){
|
:global(.links_grid a){
|
||||||
@@ -95,15 +30,18 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-decoration: unset;
|
text-decoration: unset;
|
||||||
color: var(--card-text);
|
color: var(--color-text-primary);
|
||||||
|
background-color: var(--color-surface);
|
||||||
|
border-radius: var(--radius-card);
|
||||||
|
overflow: hidden;
|
||||||
transition: var(--transition-normal);
|
transition: var(--transition-normal);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
box-shadow: 0 0.1em 0.5em 0 var(--card-shadow);
|
box-shadow: var(--shadow-sm);
|
||||||
}
|
}
|
||||||
:global(.links_grid a:hover){
|
:global(.links_grid a:hover){
|
||||||
box-shadow: 0 0.2em 1em 0 var(--card-shadow-hover);
|
box-shadow: var(--shadow-hover);
|
||||||
scale: 1.02;
|
scale: 1.02;
|
||||||
}
|
}
|
||||||
:global(.links_grid a :is(svg, img)){
|
:global(.links_grid a :is(svg, img)){
|
||||||
@@ -111,7 +49,7 @@
|
|||||||
}
|
}
|
||||||
:global(.links_grid h3){
|
:global(.links_grid h3){
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
color: var(--card-text);
|
color: var(--color-text-primary);
|
||||||
}
|
}
|
||||||
:global(.links_grid a .lock-icon){
|
:global(.links_grid a .lock-icon){
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -119,7 +57,7 @@
|
|||||||
right: 0.5rem;
|
right: 0.5rem;
|
||||||
width: 1.5rem;
|
width: 1.5rem;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
fill: var(--card-lock);
|
fill: var(--color-text-secondary);
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -164,6 +102,7 @@
|
|||||||
right: 0.3rem;
|
right: 0.3rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div class=links_grid>
|
<div class=links_grid>
|
||||||
|
|||||||
@@ -57,6 +57,7 @@
|
|||||||
documents: isEnglish ? 'Documents' : 'Dokumente',
|
documents: isEnglish ? 'Documents' : 'Dokumente',
|
||||||
audiobooksPodcasts: isEnglish ? 'Audiobooks & Podcasts' : 'Hörbücher & Podcasts',
|
audiobooksPodcasts: isEnglish ? 'Audiobooks & Podcasts' : 'Hörbücher & Podcasts',
|
||||||
fitness: 'Fitness',
|
fitness: 'Fitness',
|
||||||
|
nutrition: isEnglish ? 'Nutrition' : 'Ernährung',
|
||||||
tasks: isEnglish ? 'Tasks' : 'Aufgaben'
|
tasks: isEnglish ? 'Tasks' : 'Aufgaben'
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@@ -142,6 +143,37 @@ section h2{
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M240 144A96 96 0 1 0 48 144a96 96 0 1 0 192 0zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M240 144A96 96 0 1 0 48 144a96 96 0 1 0 192 0zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z"/></svg>
|
||||||
<h3>{labels.recipes}</h3>
|
<h3>{labels.recipes}</h3>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<a href="cospend/list">
|
||||||
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>
|
||||||
|
<h3>{labels.shopping}</h3>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href="/fitness">
|
||||||
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 160 0 64 0 160c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-64-32 0c-17.7 0-32-14.3-32-32l0-64c-17.7 0-32-14.3-32-32s14.3-32 32-32l0-64c0-17.7 14.3-32 32-32l32 0 0-64zm448 0l0 64 32 0c17.7 0 32 14.3 32 32l0 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l0 64c0 17.7-14.3 32-32 32l-32 0 0 64c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-160 0-64 0-160c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32zM416 224l0 64-192 0 0-64 192 0z"/></svg>
|
||||||
|
<h3>{labels.fitness}</h3>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href="/tasks">
|
||||||
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113c-9.3-9.4-9.3-24.6 0-34C16.3 69.5 31.5 69.5 40.7 79l21.9 22.3 53.5-59.4c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22 22.3 53.5-59.4c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>
|
||||||
|
<h3>{labels.tasks}</h3>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href={faithUrl}>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.3c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 490 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z"/></svg>
|
||||||
|
<h3>{labels.faith}</h3>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/fitness/nutrition">
|
||||||
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-10 -226 532 468"><path d="m256-140-15-21c-25-34-65-55-108-55C60-216 0-156 0-83v3C0-57 6-32 17-8h106c3 0 6-2 7-5l32-76c4-9 12-15 22-15 9 0 18 5 22 14l51 114 42-83c4-8 12-13 21-13s17 5 22 13l23 47c1 2 4 4 7 4h124c10-24 16-49 16-72v-3c0-73-60-133-133-133-43 0-83 21-108 55l-15 21zM470 40h-98c-21 0-41-12-50-31l-2-3-42 85c-5 8-13 13-22 13-10 0-18-6-22-14L185-20 174 6c-8 21-29 34-51 34H42c48 74 123 142 171 178 12 9 27 14 43 14 15 0 31-4 43-14 48-36 123-104 171-178z"/></svg>
|
||||||
|
<h3>{labels.nutrition}</h3>
|
||||||
|
</a>
|
||||||
|
|
||||||
<a href=https://git.bocken.org>
|
<a href=https://git.bocken.org>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>
|
||||||
<h3>{labels.git}</h3>
|
<h3>{labels.git}</h3>
|
||||||
@@ -158,15 +190,7 @@ section h2{
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z"/></svg>
|
||||||
<h3>{labels.familyPhotos}</h3>
|
<h3>{labels.familyPhotos}</h3>
|
||||||
</a>
|
</a>
|
||||||
<a href={faithUrl}>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.3c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 490 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z"/></svg>
|
|
||||||
<h3>{labels.faith}</h3>
|
|
||||||
</a>
|
|
||||||
<a href="/fitness">
|
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 160 0 64 0 160c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-64-32 0c-17.7 0-32-14.3-32-32l0-64c-17.7 0-32-14.3-32-32s14.3-32 32-32l0-64c0-17.7 14.3-32 32-32l32 0 0-64zm448 0l0 64 32 0c17.7 0 32 14.3 32 32l0 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l0 64c0 17.7-14.3 32-32 32l-32 0 0 64c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-160 0-64 0-160c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32zM416 224l0 64-192 0 0-64 192 0z"/></svg>
|
|
||||||
<h3>{labels.fitness}</h3>
|
|
||||||
</a>
|
|
||||||
<a href="https://meet.bocken.org">
|
<a href="https://meet.bocken.org">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z"/></svg>
|
||||||
<h3>{labels.videoConferences}</h3>
|
<h3>{labels.videoConferences}</h3>
|
||||||
@@ -177,18 +201,13 @@ section h2{
|
|||||||
<h3>{labels.searchEngine}</h3>
|
<h3>{labels.searchEngine}</h3>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="cospend/list">
|
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>
|
|
||||||
<h3>{labels.shopping}</h3>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://tree.bocken.org">
|
<a href="https://tree.bocken.org">
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM144 256a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm312 40a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM144 256a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm312 40a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z"/></svg>
|
||||||
<h3>{labels.familyTree}</h3>
|
<h3>{labels.familyTree}</h3>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://cloud.bocken.org">
|
|
||||||
|
<a href="https://cloud.bocken.org">
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z"/></svg>
|
||||||
<h3>{labels.cloud}</h3>
|
<h3>{labels.cloud}</h3>
|
||||||
@@ -214,21 +233,18 @@ section h2{
|
|||||||
<h3>{labels.documents}</h3>
|
<h3>{labels.documents}</h3>
|
||||||
</a>
|
</a>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<a href=https://transmission.bocken.org>
|
<a href=https://transmission.bocken.org>
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>
|
||||||
<h3>{labels.transmission}</h3>
|
<h3>{labels.transmission}</h3>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href=https://audio.bocken.org>
|
<a href=https://audio.bocken.org>
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48l0 128c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80l0-16 0-48 0-48C0 146.6 114.6 32 256 32s256 114.6 256 256l0 48 0 48 0 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48l0-128c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48l0 128c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80l0-16 0-48 0-48C0 146.6 114.6 32 256 32s256 114.6 256 256l0 48 0 48 0 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48l0-128c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z"/></svg>
|
||||||
<h3>{labels.audiobooksPodcasts}</h3>
|
<h3>{labels.audiobooksPodcasts}</h3>
|
||||||
</a>
|
</a>
|
||||||
<a href="/tasks">
|
|
||||||
<svg class="lock-icon"><use href="#lock-icon"/></svg>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113c-9.3-9.4-9.3-24.6 0-34C16.3 69.5 31.5 69.5 40.7 79l21.9 22.3 53.5-59.4c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22 22.3 53.5-59.4c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>
|
|
||||||
<h3>{labels.tasks}</h3>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</LinksGrid>
|
</LinksGrid>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Reference in New Issue
Block a user