-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8201072
commit 726d35f
Showing
3 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,48 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { defineConfig } from "vitepress"; | ||
|
||
const siteCopyright = 'Copyright © 2024-present Garrett Flynn and Contributors'; | ||
const siteCopyright = "Copyright © 2024-present Garrett Flynn and Contributors"; | ||
|
||
export default defineConfig({ | ||
|
||
lang: 'en-US', | ||
lang: "en-US", | ||
title: "Brains@Play", | ||
description: "Brain-Computer Interfaces with Everyone", | ||
|
||
themeConfig: { | ||
|
||
head: [["link", { rel: "icon", href: "/assets/favicon.ico" }]], | ||
|
||
themeConfig: { | ||
sidebar: { | ||
'/projects': [ | ||
{ | ||
text: 'The Brains@Play Initiative', | ||
items: [ | ||
{ text: 'International Competition', link: '/projects/initiative/brains-and-games-competition' }, | ||
{ text: 'High School Course', link: '/projects/initiative/brains-at-play-course' }, | ||
{ text: 'Public Engagement Event', link: '/projects/initiative/livewire' }, | ||
] | ||
} | ||
] | ||
"/projects": [ | ||
{ | ||
text: "The Brains@Play Initiative", | ||
items: [ | ||
{ | ||
text: "International Competition", | ||
link: "/projects/initiative/brains-and-games-competition", | ||
}, | ||
{ | ||
text: "High School Course", | ||
link: "/projects/initiative/brains-at-play-course", | ||
}, | ||
{ | ||
text: "Public Engagement Event", | ||
link: "/projects/initiative/livewire", | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/neuralinterfaces/brainsatplay' } | ||
{ | ||
icon: "github", | ||
link: "https://github.com/neuralinterfaces/brainsatplay", | ||
}, | ||
], | ||
|
||
aside: false, | ||
footer: { | ||
message: 'Built with 🧠 by Garrett Flynn', | ||
copyright: siteCopyright | ||
} | ||
} | ||
}) | ||
message: "Built with 🧠 by Garrett Flynn", | ||
copyright: siteCopyright, | ||
}, | ||
}, | ||
}); |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters