mjfs-us/.vitepress/config.ts

41 lines
1.0 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",
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: "/mystro" },
{ text: "Contact", link: "/contact" },
2024-06-20 06:33:21 +00:00
],
sidebar: [
{
text: "Work Experience",
2024-06-20 06:33:21 +00:00
items: [
{ 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
],
},
{
text: "Personal Projects",
items: [{ text: "mjfs.us", link: "/mjfs-us" }],
},
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
],
},
});