From 22860c4714c353f407ad0e2383976819a059c232 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Tue, 3 Feb 2026 15:58:45 -0600 Subject: [PATCH] feat: add docs link to footer --- src/config.ts | 29 +++-------------------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/src/config.ts b/src/config.ts index d3a9b9a..8148b28 100644 --- a/src/config.ts +++ b/src/config.ts @@ -2,37 +2,13 @@ import { readSingleton } from '@directus/sdk'; import directus from '@lib/directus'; +const global = await directus.request(readSingleton('site_global')); + export interface NavigationLink { name: string; url: string; } -const global = await directus.request(readSingleton('site_global')); - -export const WorkInformation = [ - { - name: 'Tech Startup', - position: 'Junior Web Developer', - location_type: 'On site', - location: 'Auckland, New Zealand', - url: 'https://techstartup.com', - startDate: '2024-01-01', - endDate: null, - summary: - 'Developing and maintaining web applications using JavaScript, HTML, and CSS. Collaborating with the team to implement new features and fix bugs.', - highlights: ['Improved website performance by optimizing code'], - responsibilities: [ - 'Collaborated with senior developers to design and implement web applications using modern JavaScript frameworks.', - 'Assisted in debugging and optimizing front-end code to ensure smooth user experiences.', - 'Participated in code reviews and contributed to improving coding standards within the team.', - ], - achievements: [ - 'Developing and maintaining web applications using JavaScript, HTML, and CSS. Collaborating with the team to implement new features and fix bugs.', - ], - skills: ['React', 'Tailwind', 'GitHub'], - }, -]; - export const NavigationLinks: NavigationLink[] = [ { name: 'Home', url: '/' }, { name: 'Blog', url: '/blog/' }, @@ -43,6 +19,7 @@ export const NavigationLinks: NavigationLink[] = [ export const FooterLinks: NavigationLink[] = [ { name: 'RSS', url: '/rss.xml' }, { name: 'Gitea', url: '/https://gitea.alexlebens.dev' }, + { name: 'Docs', url: '/https://docs.alexlebens.dev' }, ]; export const SEO = {