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-20 06:33:21 +00:00
|
|
|
nav: [
|
2024-06-20 06:55:13 +00:00
|
|
|
{ text: "Home", link: "/" },
|
2024-06-20 18:02:31 +00:00
|
|
|
{ text: "Experience", link: "/mystro" },
|
|
|
|
{ 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-20 18:02:31 +00:00
|
|
|
{ text: "Mystro", link: "/mystro" },
|
|
|
|
{ text: "Rotabull", link: "/rotabull" },
|
|
|
|
{ text: "TV Time", link: "/tv-time" },
|
|
|
|
{ text: "Hypremium", link: "/hypremium" },
|
2024-06-20 06:55:13 +00:00
|
|
|
],
|
|
|
|
},
|
2024-06-20 18:02:31 +00:00
|
|
|
{
|
|
|
|
text: "Personal Projects",
|
|
|
|
items: [{ text: "mjfs.us", link: "/mjfs-us" }],
|
|
|
|
},
|
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
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|