diff options
| author | toufic ar <contact@toufy.me> | 2026-07-07 18:29:43 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-07-07 18:29:43 +0300 |
| commit | f7da804e40b990e5f1ee2214a2e2e4984d704f16 (patch) | |
| tree | afec975241b8feaf40c72c924217a6a724461c51 /src/lib/components/Services.svelte | |
| download | website-f7da804e40b990e5f1ee2214a2e2e4984d704f16.tar.gz website-f7da804e40b990e5f1ee2214a2e2e4984d704f16.zip | |
initial commit
Diffstat (limited to 'src/lib/components/Services.svelte')
| -rw-r--r-- | src/lib/components/Services.svelte | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/lib/components/Services.svelte b/src/lib/components/Services.svelte new file mode 100644 index 0000000..d291599 --- /dev/null +++ b/src/lib/components/Services.svelte @@ -0,0 +1,77 @@ +<script lang="ts"> + import ServiceCard from "./ServiceCard.svelte"; + import SectionTitle from "./SectionTitle.svelte"; + + const services: App.ServiceItem[] = [ + { + icon: "iconify-[fa7-brands--git-alt]", + name: "git", + description: + "cgit instance, all project repositories are accessible and available under free licenses", + source: "https://git.toufy.me/servers/tree/aphrodite/devops/git.nix", + url: "https://git.toufy.me", + references: [ + { name: "git", url: "https://git-scm.com" }, + { name: "cgit", url: "https://git.zx2c4.com/cgit/about" }, + { name: "gitolite", url: "https://gitolite.com/gitolite" }, + ], + }, + { + icon: "iconify-[fa7-solid--search]", + name: "search", + description: + "my public searxng instance. no usage metrics. opinionated selection of engines; no LLMs, captchas, or censorship/far-right engines", + source: "https://git.toufy.me/servers/tree/aphrodite/search", + url: "https://search.toufy.me", + references: [{ name: "searxng", url: "https://searxng.org" }], + }, + { + icon: "iconify-[fa7-brands--tor-browser]", + name: "tor", + description: + "a tor relay node and an embedded snowflake. open this page and keep the tab running in the background to spin up your own snowflake instance", + source: "https://git.toufy.me/servers/tree/adonis/tor", + url: "https://tor.toufy.me", + references: [ + { name: "tor project", url: "https://torproject.org" }, + { name: "snowflake", url: "https://snowflake.torproject.org" }, + ], + }, + { + icon: "iconify-[fa7-brands--arch-linux]", + name: "aur", + description: + "weekly builds of AUR packages (mostly for development) that i use, but if someone requests a package i might add it", + source: "https://git.toufy.me/taur", + url: "https://aur.toufy.me", + references: [{ name: "aur", url: "https://aur.archlinux.org" }], + }, + { + icon: "iconify-[fa7-solid--wifi]", + name: "captive portal", + description: + "a telemetry-free captive portal check as an alternative to android's default 'connectivitycheck.gstatic.com' by google", + source: + "https://git.toufy.me/servers/tree/adonis/captiveportal/default.nix", + url: "https://cpc.toufy.me", + references: [ + { + name: "captive portal detection", + url: "https://developer.android.com/about/versions/11/features/captive-portal#detection", + }, + ], + }, + ]; +</script> + +<SectionTitle title="public service"> + a list of my public services;<br /> + everything you can access/use is free (as in free speech and free beer) +</SectionTitle> +<div class="flex place-content-center place-items-center w-full"> + <div class="grid grid-cols-1 md:grid-cols-3 w-fit"> + {#each services as service} + <ServiceCard {service} /> + {/each} + </div> +</div> |
