Compare commits

...

2 commits

Author SHA1 Message Date
Dariusz Niemczyk 103e343f22 fix: links
Some checks failed
/ deploy (push) Failing after 53s
2025-04-13 16:58:59 +00:00
q3k 2c0d70975a look: new favicon
Some checks failed
/ deploy (push) Failing after 53s
The wireframe render is barely visible on a light background. This turns
it into a silhouette (preserving our colour scheme) and rotates it by
~45 degrees to make it fill out the frame more.
2025-04-13 18:13:44 +02:00
4 changed files with 71 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -243,7 +243,7 @@ export default function LandingPage(
</> </>
</NewSection> </NewSection>
<NewSection id="faq"> <NewSection id="details">
<> <>
<div> <div>
<Heading>{t.details.title}</Heading> <Heading>{t.details.title}</Heading>

View file

@ -2,11 +2,10 @@ import { Sections } from "@/i18n/translations";
import { useLayoutEffect, useRef } from "react"; import { useLayoutEffect, useRef } from "react";
export const linksOrder: Array<Sections> = [ export const linksOrder: Array<Sections> = [
"details",
"title",
"about", "about",
"tickets", "tickets",
"cfp", "cfp",
"details",
"contact" "contact"
] ]