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",
|
|
|
|
themeConfig: {
|
|
|
|
// https://vitepress.dev/reference/default-theme-config
|
2024-06-20 18:02:31 +00:00
|
|
|
siteTitle: "mjfs.us",
|
2024-06-22 06:17:52 +00:00
|
|
|
|
|
|
|
head: [["link", { rel: "icon", href: "/favicon.ico" }]],
|
|
|
|
|
2024-06-20 06:33:21 +00:00
|
|
|
nav: [
|
2024-06-20 06:55:13 +00:00
|
|
|
{ text: "Home", link: "/" },
|
2024-06-22 03:18:40 +00:00
|
|
|
{ text: "Experience", link: "/jobs/mystro" },
|
2024-06-20 18:02:31 +00:00
|
|
|
{ text: "Contact", link: "/contact" },
|
2024-06-20 06:33:21 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
sidebar: [
|
|
|
|
{
|
2024-06-20 18:02:31 +00:00
|
|
|
text: "Work Experience",
|
2024-06-20 06:33:21 +00:00
|
|
|
items: [
|
2024-06-22 03:18:40 +00:00
|
|
|
{ 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
|
|
|
],
|
|
|
|
},
|
2024-06-20 18:02:31 +00:00
|
|
|
{
|
|
|
|
text: "Personal Projects",
|
2024-06-21 22:24:54 +00:00
|
|
|
items: [
|
2024-06-22 03:18:40 +00:00
|
|
|
{ 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-21 22:24:54 +00:00
|
|
|
],
|
2024-06-20 18:02:31 +00:00
|
|
|
},
|
2024-06-20 06:33:21 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
socialLinks: [
|
2024-06-20 18:02:31 +00:00
|
|
|
{ icon: "github", link: "https://github.com/mitchell" },
|
|
|
|
{
|
|
|
|
icon: "linkedin",
|
|
|
|
link: "https://www.linkedin.com/in/mitchelljfsimon/",
|
|
|
|
},
|
2024-06-20 06:55:13 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|