Skip to content

Commit 34fa72e

Browse files
committed
Update website to minimal requirements
1 parent f5d0379 commit 34fa72e

File tree

6 files changed

+35
-48
lines changed

6 files changed

+35
-48
lines changed

.vitepress/config.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,14 @@ export default defineConfig({
2828
title: siteTitle,
2929
description: siteDescription,
3030

31-
head: [['link', { rel: 'icon', href: '/favicon.ico' }]],
31+
head: [["link", { rel: "icon", href: "/favicon.ico" }]],
3232

3333
themeConfig: {
3434

35-
logo: '/logo_dark.png',
36-
3735
nav: [
3836
{ text: 'Home', link: '/' },
39-
{ text: 'Catalog', link: '/catalog' },
40-
{ text: 'Blog', link: '/posts' }
37+
{ text: 'Projects', link: '/projects/' },
38+
{ text: 'Blog', link: `/${blogDir}/` },
4139
],
4240

4341
socialLinks: [

.vitepress/theme/style.css

+13-14
Original file line numberDiff line numberDiff line change
@@ -93,26 +93,25 @@
9393
:root {
9494

9595
--vp-home-hero-name-color: var(--vp-c-text-1);
96-
97-
/* --vp-home-hero-name-color: transparent; */
98-
99-
/* --vp-home-hero-name-background: -webkit-linear-gradient(
100-
120deg,
101-
#bd34fe 30%,
102-
#41d1ff
103-
);
104-
105-
--vp-home-hero-image-background-image: linear-gradient(
106-
-45deg,
107-
#bd34fe 50%,
108-
#47caff 50%
109-
); */
11096

11197
--vp-home-hero-image-filter: blur(44px);
11298
}
11399

100+
.VPHome {
101+
margin-bottom: 0px !important;
102+
}
103+
114104
.VPHero > .container {
115105
padding: 50px 0px;
106+
flex-grow: 1;
107+
}
108+
109+
.VPHero {
110+
height: calc(100vh - var(--vp-nav-height) - 50px);
111+
display: flex;
112+
justify-content: center;
113+
align-items: center;
114+
116115
}
117116

118117

catalog.md

-7
This file was deleted.
File renamed without changes.

index.md

+4-22
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,9 @@ hero:
1111

1212
actions:
1313
- theme: brand
14-
text: View the Catalog
15-
link: /catalog
14+
text: Browse Our Projects
15+
link: /projects
1616
- theme: alt
17-
text: Learn More
18-
link: /posts
19-
20-
features:
21-
- title: Read the NI Catalog
22-
details: Browse our selection of brain-responsive software.
23-
icon: 📓
24-
link: /catalog
25-
26-
- title: Publish Brain-Responsive Apps
27-
details: Create your application with Brains@Play
28-
icon: 🧑‍💻
29-
link: https://brainsatplay.com
30-
31-
- title: Reach 8B Brains
32-
details: Let us help you reach your audience.
33-
icon: 📲
34-
link: mailto:[email protected]
35-
36-
17+
text: Contact Us
18+
link: mailto:[email protected]
3719
---

projects.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: home
3+
4+
title: Our Work
5+
features:
6+
- title: Commoners
7+
details: Cross-platform development for Serial and Bluetooth EEG devices.
8+
icon: 📲
9+
link: https://commoners.dev
10+
11+
- title: Brains@Play
12+
details: Developing Brain-Computer Interfaces with Everyone
13+
icon: 🤯
14+
link: https://brainsatplay.com
15+
---

0 commit comments

Comments
 (0)