changed my mind

This commit is contained in:
2026-01-18 04:35:26 +01:00
parent 5d125d9b7d
commit 69c4e3cff3
2 changed files with 0 additions and 90 deletions
-88
View File
@@ -1,88 +0,0 @@
---
const services = [
{
name: 'gitea',
url: 'https://git.albert.lol',
},
{
name: 'pastebin',
url: 'https://bin.albert.lol',
},
{
name: 'opengist',
url: 'https://gist.albert.lol',
},
{
name: 'filebrowser',
url: 'https://files.albert.lol',
},
{
name: 'ipinfo',
url: 'https://ip.albert.lol',
},
{
name: 'teamspeak',
url: 'https://ts.albert.lol',
},
{
name: 'erettsegi',
url: 'https://erettsegi.albert.lol',
},
{
name: 'ncore-stats',
url: 'https://nc.albert.lol',
},
{
name: 'httpdebug',
url: 'https://httpdebug.albert.lol',
},
{
name: 'statuspage',
url: 'https://status.albert.lol',
},
{
name: 'watch-together',
url: 'https://wt.albert.lol',
},
{
name: 'budgetable',
url: 'https://budgetable.demo.albert.lol',
},
]
---
<section class='services details-list'>
<details>
<summary>~/services</summary>
<div>
<dl>
{
services.map(service => (
<dt>
<a
href={service.url}
target='_blank'
rel='noopener noreferrer'>
{service.name}
</a>
</dt>
))
}
</dl>
</div>
</details>
</section>
<style>
dl {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 0.5rem;
padding-block: 1rem;
}
dt {
margin: 0 !important;
white-space: nowrap;
}
</style>
-2
View File
@@ -4,7 +4,6 @@ import Nowplaying from '../components/nowplaying.astro'
import Whoami from '../components/whoami.astro' import Whoami from '../components/whoami.astro'
import Socials from '../components/socials.astro' import Socials from '../components/socials.astro'
import Projects from '../components/projects.astro' import Projects from '../components/projects.astro'
import Services from '../components/services.astro'
import Setup from '../components/setup.astro' import Setup from '../components/setup.astro'
const title = 'albert' const title = 'albert'
@@ -19,6 +18,5 @@ const description =
<Whoami /> <Whoami />
<Socials /> <Socials />
<Projects /> <Projects />
<Services />
<Setup /> <Setup />
</Layout> </Layout>