diff --git a/design-system/global.css b/design-system/global.css index 12f27b7c..76595e41 100644 --- a/design-system/global.css +++ b/design-system/global.css @@ -81,6 +81,14 @@ src: url(/fonts/fragment-mono/FragmentMono-Regular.woff2) format('woff2'); } +@font-face { + font-family: 'Arial Rounded'; + font-weight: 600; + font-style: normal; + font-display: swap; + src: url(/fonts/arial-rounded/arial-rounded-mt-bold.woff) format('woff'); +} + body { background-color: rgb(252, 252, 252); } diff --git a/package.json b/package.json index 0b39a4fa..97361177 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "build:og": "node ./build/generateOpengraph.js", "build:sitemap": "node ./build/generateSitemap.js", "compile": "paraglide-js compile --project ./project.inlang.json --outdir ./lang/paraglide", - "--- Not in use, but necessary to include ---": "", + "--- Not in use, but nenpcessary to include ---": "", "build": "npm run compile && npm run build:og && npm run build:sitemap && vite build" }, "dependencies": { diff --git a/pages/archive/index/+Page.tsx b/pages/archive/index/+Page.tsx index b1fc6525..3c8bc31a 100644 --- a/pages/archive/index/+Page.tsx +++ b/pages/archive/index/+Page.tsx @@ -18,7 +18,7 @@ export default function Page() { href="/archive/projects" class="flex justify-between border-b border-b-zinc-100 dark:border-b-zinc-900 gap-4 leading-none md:items-center group/link py-4 transition-colors hover:bg-zinc-100 rounded-md dark:hover:bg-zinc-900" > -

+

Projects

@@ -35,7 +35,7 @@ export default function Page() { href="/archive/short-projects" class="flex justify-between gap-4 leading-none md:items-center group/link py-4 transition-colors hover:bg-zinc-100 rounded-md dark:hover:bg-zinc-900" > -

+

Short Projects

diff --git a/pages/archive/projects/@slug/+Page.tsx b/pages/archive/projects/@slug/+Page.tsx index 174749ba..21ed0ef0 100644 --- a/pages/archive/projects/@slug/+Page.tsx +++ b/pages/archive/projects/@slug/+Page.tsx @@ -6,7 +6,7 @@ export default function Page(props: Record) { return ( <>
-
+
Archive diff --git a/pages/archive/projects/index/+Page.tsx b/pages/archive/projects/index/+Page.tsx index e958393c..e12ef3ef 100644 --- a/pages/archive/projects/index/+Page.tsx +++ b/pages/archive/projects/index/+Page.tsx @@ -32,7 +32,7 @@ export default function Page({ projects }: { projects: any }) { href={`${project.url}`} class="grid md:grid-cols-8 grid-cols-2 gap-4 leading-none md:items-center group/link py-4 transition-colors hover:bg-zinc-100 rounded-md dark:hover:bg-zinc-900" > -

+

{project.title}

diff --git a/pages/archive/short-projects/@slug/+Page.tsx b/pages/archive/short-projects/@slug/+Page.tsx index 44b47705..9c40284b 100644 --- a/pages/archive/short-projects/@slug/+Page.tsx +++ b/pages/archive/short-projects/@slug/+Page.tsx @@ -6,7 +6,7 @@ export default function Page(props: Record) { return ( <>
-
+
Archive diff --git a/pages/archive/short-projects/index/+Page.tsx b/pages/archive/short-projects/index/+Page.tsx index 52ced421..2bf89e20 100644 --- a/pages/archive/short-projects/index/+Page.tsx +++ b/pages/archive/short-projects/index/+Page.tsx @@ -32,7 +32,7 @@ export default function Page({ projects }: { projects: any }) { href={`${project.url}`} class="grid md:grid-cols-8 grid-cols-2 gap-4 leading-none md:items-center group/link py-4 transition-colors hover:bg-zinc-100 rounded-md dark:hover:bg-zinc-900" > -

+

{project.title}

diff --git a/pages/colophon/+Page.tsx b/pages/colophon/+Page.tsx index fa43bc6c..a4e563fa 100644 --- a/pages/colophon/+Page.tsx +++ b/pages/colophon/+Page.tsx @@ -399,6 +399,10 @@ export default function Tooltip(props: { Nils Eller
,{" "} + + Priyank Shah + + ,{" "} Samuel Kraft diff --git a/pages/feed/index/+Page.tsx b/pages/feed/index/+Page.tsx index 04c45233..67befb2f 100644 --- a/pages/feed/index/+Page.tsx +++ b/pages/feed/index/+Page.tsx @@ -107,17 +107,17 @@ export default function Page({
-

+

{post.move}

@@ -126,17 +126,17 @@ export default function Page({
-

+

{post.exercise}

@@ -147,17 +147,17 @@ export default function Page({
-

+

{post.stand}

diff --git a/public/fonts/arial-rounded/arial-rounded-mt-bold.woff b/public/fonts/arial-rounded/arial-rounded-mt-bold.woff new file mode 100644 index 00000000..f0220787 Binary files /dev/null and b/public/fonts/arial-rounded/arial-rounded-mt-bold.woff differ diff --git a/tailwind.config.js b/tailwind.config.js index 45a49b66..ba9855ee 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -40,6 +40,9 @@ export default { shake: "shake 0.1s ease-in-out", "infinite-scroll": "infinite-scroll 25s linear infinite", }, + fontFamily: { + rounded: ["Arial Rounded", "sans-serif"], + }, }, fontFamily: { sans: ["Pretendard Variable", "Pretendard", "Inter", "sans-serif"],