Skip to content

Commit dfd0d17

Browse files
committed
Theme and dan suggestions
1 parent 840c52b commit dfd0d17

File tree

2 files changed

+34
-21
lines changed

2 files changed

+34
-21
lines changed

src/pages/index.astro

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import Layout from "../layouts/Layout.astro";
2626
<Hero>
2727
<p>[Insert multiple probes with planned routes and highlighted regions]</p>
2828
<Prose>
29-
<h2 id="about">Pinpoint aims to advance large-scale neuroscience research with intuitive browser-based planning and
29+
<h2 id="about">Pinpoint aims to advance large-scale neuroscience research with intuitive browser-based
30+
planning and
3031
automation
3132
tools for efficient and reproducible neurosurgery.</h2>
3233
</Prose>
@@ -62,7 +63,8 @@ import Layout from "../layouts/Layout.astro";
6263
<br/>
6364

6465
<Hero>
65-
<p>[Scroll through various probe 3d models]</p>
66+
<p>[Scroll through various probe 3d models; left to right with labels, rat tetrode array, use nanoject for viral
67+
injector]</p>
6668
<Prose>
6769
<h2>Simulate your lab</h2>
6870
<h3>Use Neuropixel probes, viral injectors, and 2-photon lasers</h3>
@@ -72,8 +74,9 @@ import Layout from "../layouts/Layout.astro";
7274
<br/>
7375

7476
<Hero>
75-
<p>[Insert 1-shank neuro pixel probe, bring in channel map, show in-plane slice, do crazy rotations, show
76-
coordinates in the corner]</p>
77+
<p>[Insert 1-shank neuro pixel probe vertically, bring in channel map, show coordinates in the corner, consider
78+
mouse brain]</p>
79+
<p>[]</p>
7780
<Prose>
7881
<h2>View your plan in 3D</h2>
7982
</Prose>
@@ -82,12 +85,12 @@ import Layout from "../layouts/Layout.astro";
8285
<br/>
8386

8487
<!-- FIXME: Also says experiments -->
85-
<Hero>
86-
<p>[Insert several more probes, rotate them out of each other's way, highlight target regions]</p>
87-
<Prose>
88-
<h2>Plan the most complex experiments with ease.</h2>
89-
</Prose>
90-
</Hero>
88+
<!--<Hero>-->
89+
<!-- <p>[Insert several more probes, rotate them out of each other's way, highlight target regions]</p>-->
90+
<!-- <Prose>-->
91+
<!-- <h2>Plan the most complex experiments with ease.</h2>-->
92+
<!-- </Prose>-->
93+
<!--</Hero>-->
9194

9295
<br/>
9396

tailwind.config.mjs

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
/** @type {import('tailwindcss').Config} */
2-
import typography from "@tailwindcss/typography";
3-
import daisyui from "daisyui";
2+
import typography from '@tailwindcss/typography'
3+
import daisyui from 'daisyui'
4+
import { dark } from 'daisyui/src/theming/themes'
45

56
export default {
6-
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
7-
theme: {
8-
extend: {},
9-
},
10-
plugins: [typography, daisyui],
7+
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
8+
theme: {
9+
extend: {},
10+
},
11+
plugins: [typography, daisyui],
1112

12-
daisyui: {
13-
themes: ["dark"],
14-
},
15-
};
13+
daisyui: {
14+
themes: [
15+
{
16+
dark: {
17+
...dark,
18+
'primary': '#0FBBBB',
19+
'base-100': '#000000',
20+
'base-content': '#ffffff',
21+
},
22+
},
23+
],
24+
},
25+
}

0 commit comments

Comments
 (0)