mjfs-us/.vitepress/config.ts

53 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-06-20 06:55:13 +00:00
import { defineConfig } from "vitepress";
2024-06-20 06:33:21 +00:00
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Mitchell Simon",
description: "Software Engineer",
head: [["link", { rel: "icon", href: "/favicon.ico" }]],
2024-06-20 06:33:21 +00:00
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
siteTitle: "mjfs.us",
2024-06-20 06:33:21 +00:00
nav: [
2024-06-20 06:55:13 +00:00
{ text: "Home", link: "/" },
{ text: "Experience", link: "/jobs/mystro" },
{ text: "Contact", link: "/contact" },
{
text: "Git",
link: "http://git.mjfs.us/explore/repos",
target: "_self",
},
2024-06-20 06:33:21 +00:00
],
sidebar: [
{
text: "Work Experience",
2024-06-20 06:33:21 +00:00
items: [
{ text: "Mystro", link: "/jobs/mystro" },
{ text: "Rotabull", link: "/jobs/rotabull" },
{ text: "TV Time", link: "/jobs/tv-time" },
{ text: "Hypremium", link: "/jobs/hypremium" },
2024-06-20 06:55:13 +00:00
],
},
{
text: "Personal Projects",
items: [
{ text: "mjfs.us", link: "/projects/mjfs-us" },
{ text: "mjfs.us (Old)", link: "/projects/mjfs-us-react" },
{ text: "lambdarouter", link: "/projects/lambdarouter" },
{ text: "selfpass", link: "/projects/selfpass" },
],
},
2024-06-20 06:33:21 +00:00
],
socialLinks: [
{ icon: "github", link: "https://github.com/mitchell" },
{
icon: "linkedin",
link: "https://www.linkedin.com/in/mitchelljfsimon/",
},
2024-06-20 06:55:13 +00:00
],
},
});