feat: add docs link to footer
This commit is contained in:
@@ -2,37 +2,13 @@ import { readSingleton } from '@directus/sdk';
|
|||||||
|
|
||||||
import directus from '@lib/directus';
|
import directus from '@lib/directus';
|
||||||
|
|
||||||
|
const global = await directus.request(readSingleton('site_global'));
|
||||||
|
|
||||||
export interface NavigationLink {
|
export interface NavigationLink {
|
||||||
name: string;
|
name: string;
|
||||||
url: 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[] = [
|
export const NavigationLinks: NavigationLink[] = [
|
||||||
{ name: 'Home', url: '/' },
|
{ name: 'Home', url: '/' },
|
||||||
{ name: 'Blog', url: '/blog/' },
|
{ name: 'Blog', url: '/blog/' },
|
||||||
@@ -43,6 +19,7 @@ export const NavigationLinks: NavigationLink[] = [
|
|||||||
export const FooterLinks: NavigationLink[] = [
|
export const FooterLinks: NavigationLink[] = [
|
||||||
{ name: 'RSS', url: '/rss.xml' },
|
{ name: 'RSS', url: '/rss.xml' },
|
||||||
{ name: 'Gitea', url: '/https://gitea.alexlebens.dev' },
|
{ name: 'Gitea', url: '/https://gitea.alexlebens.dev' },
|
||||||
|
{ name: 'Docs', url: '/https://docs.alexlebens.dev' },
|
||||||
];
|
];
|
||||||
|
|
||||||
export const SEO = {
|
export const SEO = {
|
||||||
|
|||||||
Reference in New Issue
Block a user