🎨 Format files, Added codeberg to links,lighter colour for linkcards
All checks were successful
Build and deploy website / build (push) Successful in 33s

This commit is contained in:
Martin Berg Alstad 2025-02-15 14:59:32 +01:00
parent 04f279dab3
commit cb00252364
Signed by: martials
GPG Key ID: 706F53DD087A91DE
30 changed files with 151 additions and 103 deletions

View File

@ -13,6 +13,7 @@
"sourceCode": "Source code", "sourceCode": "Source code",
"createdAt": "Created at", "createdAt": "Created at",
"updatedAt": "Updated at", "updatedAt": "Updated at",
"forMirrors": "For mirrors of Gitea",
"forPersonalProjects": "For personal projects", "forPersonalProjects": "For personal projects",
"status": "Status", "status": "Status",
"name": "Name", "name": "Name",

View File

@ -13,6 +13,7 @@
"sourceCode": "Kildekode", "sourceCode": "Kildekode",
"createdAt": "Opprettet", "createdAt": "Opprettet",
"updatedAt": "Oppdatert", "updatedAt": "Oppdatert",
"forMirrors": "For mirrors av Gitea",
"forPersonalProjects": "For personlige prosjekter", "forPersonalProjects": "For personlige prosjekter",
"status": "Status", "status": "Status",
"name": "Navn", "name": "Navn",

View File

@ -4,14 +4,20 @@ import * as m from "@/paraglide/messages.js"
// TODO self-host email server // TODO self-host email server
--- ---
<form class="flex flex-col gap-2 max-w-[500px] mx-auto" method="post" action="https://formspree.io/f/mknykgbn"> <form
class="flex flex-col gap-2 max-w-[500px] mx-auto"
method="post"
action="https://formspree.io/f/mknykgbn"
>
<Input label={m.name()} type="text" name="name" required /> <Input label={m.name()} type="text" name="name" required />
<Input label={m.subject()} name="subject" required /> <Input label={m.subject()} name="subject" required />
<Input label={m.email()} name="_replyto" /> <Input label={m.email()} name="_replyto" />
<input name="_gotcha" type="text" class={"hidden"} /> { /*Honeypot spam filter*/} <input name="_gotcha" type="text" class={"hidden"} />
{/*Honeypot spam filter*/}
<label class="flex flex-col"> <label class="flex flex-col">
{m.message()} {m.message()}
<textarea name="message" class="textarea textarea-bordered" required></textarea> <textarea name="message" class="textarea textarea-bordered" required
></textarea>
</label> </label>
<button type="submit">{m.send()}</button> <button type="submit">{m.send()}</button>
</form> </form>

View File

@ -9,7 +9,7 @@ import * as m from "@/paraglide/messages"
const giteaLink = `${GIT_URL}/martials/martials.no` const giteaLink = `${GIT_URL}/martials/martials.no`
--- ---
<div class="divider" /> <div class="divider"></div>
<div class="py-5 flex flex-row gap-1 justify-around w-full items-center"> <div class="py-5 flex flex-row gap-1 justify-around w-full items-center">
<div> <div>
<GiteaLink href={giteaLink} /> <GiteaLink href={giteaLink} />

View File

@ -16,7 +16,14 @@ import "@/styles/global.css"
</h1> </h1>
<p class="mx-1 sm:my-10">{m.aboutMe()}</p> <p class="mx-1 sm:my-10">{m.aboutMe()}</p>
</div> </div>
<Image src={me} alt="Me on a hike" width="400" height="400" class="p-5 mx-auto" loading={"eager"} /> <Image
src={me}
alt="Me on a hike"
width="400"
height="400"
class="p-5 mx-auto"
loading={"eager"}
/>
</div> </div>
<!-- Mastodon verification --> <!-- Mastodon verification -->
<a rel="me" href="https://snabelen.no/@Martials" class="hidden">Mastodon</a> <a rel="me" href="https://snabelen.no/@Martials" class="hidden">Mastodon</a>

View File

@ -6,6 +6,10 @@ const currentPath = resolvePathname(Astro.url.pathname)
--- ---
<div class="join"> <div class="join">
<LocaleLink to={currentPath as NavLink} lang="nb" class="btn join-item">Norsk</LocaleLink> <LocaleLink to={currentPath as NavLink} lang="nb" class="btn join-item"
<LocaleLink to={currentPath as NavLink} lang="en" class="btn join-item">English</LocaleLink> >Norsk</LocaleLink
>
<LocaleLink to={currentPath as NavLink} lang="en" class="btn join-item"
>English</LocaleLink
>
</div> </div>

View File

@ -1,5 +1,4 @@
<script lang="ts"> <script lang="ts">
// TODO move to types? // TODO move to types?
interface Option<Key> { interface Option<Key> {
key: Key key: Key

View File

@ -5,31 +5,40 @@
import type { CollectionEntry } from "astro:content" import type { CollectionEntry } from "astro:content"
interface Props { interface Props {
uses: CollectionEntry<'uses'>[] uses: CollectionEntry<"uses">[]
} }
const { uses }: Props = $props() const { uses }: Props = $props()
const hardwareOptions = uses.map((item) => ({ const hardwareOptions = uses.map((item) => ({
key: item.id, key: item.id,
value: item.data.title value: item.data.title,
})) }))
let selectedHardwareKey = $state(uses[0].id) let selectedHardwareKey = $state(uses[0].id)
let selectedHardware = $derived(uses.find((item) => item.id === selectedHardwareKey)!) let selectedHardware = $derived(
uses.find((item) => item.id === selectedHardwareKey)!,
)
// TODO set url query param to selected hardware
</script> </script>
<div class="px-2 max-w-[750px] sm:min-w-[750px] w-screen"> <div class="px-2 max-w-[750px] sm:min-w-[750px] w-screen">
<h1 class="text-center">{m.uses()}</h1> <h1 class="text-center">{m.uses()}</h1>
<div> <div>
<Select options={hardwareOptions} bind:selected={selectedHardwareKey} class="mx-auto w-max" /> <Select
options={hardwareOptions}
bind:selected={selectedHardwareKey}
class="mx-auto w-max"
/>
</div> </div>
<br /> <br />
<CollapseList items={selectedHardware.data.hardware} title={m.hardware()} /> <CollapseList items={selectedHardware.data.hardware} title={m.hardware()} />
<div class="my-2"></div> <div class="my-2"></div>
{#if (selectedHardware.data.accessories)} {#if selectedHardware.data.accessories}
<CollapseList items={selectedHardware.data.accessories} title={m.accessories()} /> <CollapseList
items={selectedHardware.data.accessories}
title={m.accessories()}
/>
{/if} {/if}
</div> </div>

View File

@ -1,8 +1,9 @@
<script lang="ts"> <script lang="ts">
import type { Snippet } from "svelte"
interface Props { interface Props {
title?: string title?: string
children: any children: Snippet
} }
const { title = "", children }: Props = $props() const { title = "", children }: Props = $props()

View File

@ -9,7 +9,7 @@
const { items = [], title = "" }: Props = $props() const { items = [], title = "" }: Props = $props()
</script> </script>
<Collapse title={title}> <Collapse {title}>
<ul> <ul>
{#each items as item} {#each items as item}
<li class="list-disc ml-5">{item}</li> <li class="list-disc ml-5">{item}</li>

View File

@ -7,4 +7,4 @@ interface Props {
const { class: clazz } = Astro.props const { class: clazz } = Astro.props
--- ---
<PajamasIcon name="pajamas:gitea" class={clazz}></PajamasIcon> <PajamasIcon name="pajamas:gitea" class={clazz} />

View File

@ -7,6 +7,12 @@ interface Props extends LinkProps {
const { href, noStyle = false, class: clazz, ...props } = Astro.props const { href, noStyle = false, class: clazz, ...props } = Astro.props
--- ---
<a href={href} target="_blank" rel="noopener" class:list={[noStyle ? "" : "link", clazz]} {...props}> <a
href={href}
target="_blank"
rel="noopener"
class:list={[noStyle ? "" : "link", clazz]}
{...props}
>
<slot /> <slot />
</a> </a>

View File

@ -11,7 +11,7 @@ const { title, message, url, icon, class: clazz } = Astro.props
--- ---
<ExternalLink href={url} noStyle> <ExternalLink href={url} noStyle>
<div class:list={["card bg-neutral", clazz]}> <div class:list={["card bg-base-300", clazz]}>
<div class="card-body p-5 flex flex-row items-center"> <div class="card-body p-5 flex flex-row items-center">
<PajamasIcon name={icon ?? "pajamas:link"} class="w-6 h-6" /> <PajamasIcon name={icon ?? "pajamas:link"} class="w-6 h-6" />
<div> <div>

View File

@ -3,44 +3,50 @@ import { GIT_URL } from "astro:env/client"
import * as m from "@/paraglide/messages" import * as m from "@/paraglide/messages"
export interface MyLink { export interface MyLink {
title: string; title: string
url: string; url: string
message?: string; message?: string
icon?: PajamasIcon icon?: PajamasIcon
} }
export default [ export default [
{ {
title: "GitHub", title: "Codeberg",
url: "https://github.com/emberal", url: "https://codeberg.org/martials",
icon: "pajamas:github" message: m.forMirrors(),
icon: "pajamas:git",
}, },
{ {
title: "Gitea", title: "Gitea",
url: `${GIT_URL}/martials`, url: `${GIT_URL}/martials`,
message: m.forPersonalProjects(), message: m.forPersonalProjects(),
icon: "pajamas:gitea" icon: "pajamas:gitea",
},
{
title: "GitHub",
url: "https://github.com/emberal",
icon: "pajamas:github",
}, },
{ {
title: "LinkedIn", title: "LinkedIn",
url: "https://www.linkedin.com/in/martin-b-2a69391a3/", url: "https://www.linkedin.com/in/martin-b-2a69391a3/",
icon: "pajamas:linkedin" icon: "pajamas:linkedin",
}, },
{ {
title: "Mastodon (Snabelen)", title: "Mastodon (Snabelen.no)",
url: "https://snabelen.no/@Martials", url: "https://snabelen.no/@Martials",
icon: "pajamas:mastodon" icon: "pajamas:mastodon",
}, },
{ {
title: "Pixelfed", title: "Pixelfed",
url: "https://pixelfed.social/i/web/profile/261454857934868480" url: "https://pixelfed.social/i/web/profile/261454857934868480",
}, },
{ {
title: "Steam", title: "Steam",
url: "https://steamcommunity.com/id/martials/" url: "https://steamcommunity.com/id/martials/",
}, },
{ {
title: "Trakt.tv", title: "Trakt.tv",
url: "https://trakt.tv/users/martials" url: "https://trakt.tv/users/martials",
} },
] satisfies MyLink[] ] as MyLink[]

View File

@ -17,10 +17,7 @@ const baseUrl: NavLink = "/projects"
<div class="flex flex-wrap justify-around"> <div class="flex flex-wrap justify-around">
{ {
projects.map( projects.map(
({ ({ data: { title, description, tags, heroImage, heroImageAlt }, id }) => (
data: { title, description, tags, heroImage, heroImageAlt },
id
}) => (
<div class="my-5 px-2"> <div class="my-5 px-2">
<ProjectCard <ProjectCard
title={title} title={title}
@ -31,7 +28,7 @@ const baseUrl: NavLink = "/projects"
imageAlt={heroImageAlt} imageAlt={heroImageAlt}
/> />
</div> </div>
) ),
) )
} }
</div> </div>

View File

@ -24,7 +24,7 @@ const {
heroImageAlt, heroImageAlt,
source, source,
createdAt, createdAt,
updatedAt updatedAt,
} = entry!.data } = entry!.data
--- ---

View File

@ -12,8 +12,8 @@ const projectCollection = defineCollection({
tags: z.array(z.string()), tags: z.array(z.string()),
source: z.string(), source: z.string(),
createdAt: z.string(), createdAt: z.string(),
updatedAt: z.string() updatedAt: z.string(),
}) }),
}) })
const usesCollection = defineCollection({ const usesCollection = defineCollection({
@ -21,11 +21,11 @@ const usesCollection = defineCollection({
schema: z.object({ schema: z.object({
title: z.string(), title: z.string(),
accessories: z.optional(z.array(z.string())), accessories: z.optional(z.array(z.string())),
hardware: z.array(z.string()) hardware: z.array(z.string()),
}) }),
}) })
export const collections = { export const collections = {
projects: projectCollection, projects: projectCollection,
uses: usesCollection uses: usesCollection,
} }

View File

@ -12,20 +12,20 @@ const { title, class: clazz } = Astro.props
<!doctype html> <!doctype html>
<html lang={languageTag()} dir={"ltr"}> <html lang={languageTag()} dir={"ltr"}>
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="description" content="Astro description" /> <meta name="description" content="Astro description" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<link rel="sitemap" href="/sitemap-index.xml" /> <link rel="sitemap" href="/sitemap-index.xml" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<title>{title}</title> <title>{title}</title>
</head> </head>
<body class="flex flex-col h-screen"> <body class="flex flex-col h-screen">
<Navbar /> <Navbar />
<main class:list={["grow", clazz]}> <main class:list={["grow", clazz]}>
<slot /> <slot />
</main> </main>
<Footer /> <Footer />
</body> </body>
</html> </html>

View File

@ -9,24 +9,24 @@ interface Link {
const Links: Link[] = [ const Links: Link[] = [
{ {
label: m.home, label: m.home,
to: "/" to: "/",
}, },
{ {
label: m.myProjects, label: m.myProjects,
to: "/projects" to: "/projects",
}, },
{ {
label: m.myLinks, label: m.myLinks,
to: "/links" to: "/links",
}, },
{ {
label: m.uses, label: m.uses,
to: "/uses" to: "/uses",
}, },
{ {
label: m.contactMe, label: m.contactMe,
to: "/contact" to: "/contact",
} },
] ]
export default Links export default Links

View File

@ -3,6 +3,7 @@ import Layout from "@/layouts/Layout.astro"
import LinksPage from "@/components/myLinks/LinksPage.astro" import LinksPage from "@/components/myLinks/LinksPage.astro"
import "@/styles/global.css" import "@/styles/global.css"
--- ---
<Layout title="My links"> <Layout title="My links">
<LinksPage /> <LinksPage />
</Layout> </Layout>

View File

@ -10,7 +10,7 @@ export function getStaticPaths(): GetStaticPathsResult {
return [ return [
{ params: { project: "hvl-ics-simplifier" } }, { params: { project: "hvl-ics-simplifier" } },
{ params: { project: "homepage" } }, { params: { project: "homepage" } },
{ params: { project: "simplify-truths" } } { params: { project: "simplify-truths" } },
] ]
} }

View File

@ -8,5 +8,5 @@ const uses = await getCollection("uses")
--- ---
<Layout title="Hardware" class="mx-auto max-w-[750px]"> <Layout title="Hardware" class="mx-auto max-w-[750px]">
<UsesPage server:defer uses={uses} /> <UsesPage client:load uses={uses} />
</Layout> </Layout>

View File

@ -3,7 +3,6 @@ import Layout from "../layouts/Layout.astro"
import Greeting from "../components/Greeting.astro" import Greeting from "../components/Greeting.astro"
// https://slashpages.net/ // https://slashpages.net/
--- ---
<Layout title="Velkommen"> <Layout title="Velkommen">

View File

@ -3,6 +3,7 @@ import Layout from "@/layouts/Layout.astro"
import LinksPage from "@/components/myLinks/LinksPage.astro" import LinksPage from "@/components/myLinks/LinksPage.astro"
import "@/styles/global.css" import "@/styles/global.css"
--- ---
<Layout title="Mine lenker"> <Layout title="Mine lenker">
<LinksPage /> <LinksPage />
</Layout> </Layout>

View File

@ -10,7 +10,7 @@ export function getStaticPaths(): GetStaticPathsResult {
return [ return [
{ params: { project: "hvl-ics-simplifier" } }, { params: { project: "hvl-ics-simplifier" } },
{ params: { project: "homepage" } }, { params: { project: "homepage" } },
{ params: { project: "simplify-truths" } } { params: { project: "simplify-truths" } },
] ]
} }

View File

@ -3,26 +3,26 @@
@plugin "daisyui"; @plugin "daisyui";
@layer utilities { @layer utilities {
.debug { .debug {
@apply border border-red-500; @apply border border-red-500;
} }
} }
@layer base { @layer base {
br { br {
@apply my-0.5; @apply my-0.5;
} }
h1 { h1 {
@apply text-4xl font-bold mb-2; @apply text-4xl font-bold mb-2;
} }
h2 { h2 {
@apply text-3xl font-bold mb-2; @apply text-3xl font-bold mb-2;
} }
/* TODO change default style*/ /* TODO change default style*/
a { a {
@apply link @apply link;
} }
} }

View File

@ -1,3 +1,13 @@
export type Icon = "gitea" | "github" | "mastodon" | "linkedin" | "link" | "status-health" /**
* @see https://icon-sets.iconify.design/pajamas/
*/
export type Icon =
| "git"
| "gitea"
| "github"
| "mastodon"
| "linkedin"
| "link"
| "status-health"
export type PajamasIcon = `pajamas:${Icon}` export type PajamasIcon = `pajamas:${Icon}`

View File

@ -1,8 +1,8 @@
export interface ComponentProps { export interface ComponentProps {
class?: string; class?: string
title?: string; title?: string
} }
export interface LinkProps extends ComponentProps { export interface LinkProps extends ComponentProps {
href: string; href: string
} }

View File

@ -7,7 +7,7 @@ interface TranslatedPathnames {
} }
export type NavLink = export type NavLink =
"/" | "/"
| "/contact" | "/contact"
| "/projects" | "/projects"
| `/projects/${Project["id"]}` | `/projects/${Project["id"]}`
@ -19,7 +19,7 @@ const paths: Set<NavLink> = new Set([
"/contact", "/contact",
"/projects", "/projects",
"/links", "/links",
"/uses" "/uses",
]) ])
/** /**
@ -33,13 +33,13 @@ const pathnames: Record<AbsolutePathname, TranslatedPathnames> = {}
for (const path of paths) { for (const path of paths) {
pathnames[path] = { pathnames[path] = {
nb: path, nb: path,
en: `/en${path}` en: `/en${path}`,
} }
} }
export function localizePathname( export function localizePathname(
pathname: NavLink, pathname: NavLink,
locale: AvailableLanguageTag locale: AvailableLanguageTag,
): string { ): string {
const pathnameParts = pathname.split("/") const pathnameParts = pathname.split("/")
const firstSegment: AbsolutePathname = `/${pathnameParts[1]}` const firstSegment: AbsolutePathname = `/${pathnameParts[1]}`