diff --git a/src/components/Prose.astro b/src/components/Article.astro similarity index 83% rename from src/components/Prose.astro rename to src/components/Article.astro index 9993033..ebe3765 100644 --- a/src/components/Prose.astro +++ b/src/components/Article.astro @@ -1,6 +1,3 @@ ---- - ----
diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 2090d74..b26c26c 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -1,5 +1,22 @@ -
+--- +interface Props { + graphicSrc: string; +} + +const { graphicSrc } = Astro.props; +--- +
- + +
+
+

{graphicSrc}

+
+
+ + +
+ +
\ No newline at end of file diff --git a/src/components/Welcome.astro b/src/components/Welcome.astro deleted file mode 100644 index e760169..0000000 --- a/src/components/Welcome.astro +++ /dev/null @@ -1,209 +0,0 @@ ---- -import astroLogo from "../assets/astro.svg"; -import background from "../assets/background.svg"; ---- - -
- -
-
- Astro Homepage -

- To get started, open the
src/pages
directory in your project. -

- -
-
- - - -

What's New in Astro 5.0?

-

- From content layers to server islands, click to learn more about the new features and - improvements in Astro 5.0 -

-
-
- - diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 63cad93..27e76a9 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,7 +1,7 @@ --- --- - + diff --git a/src/pages/index.astro b/src/pages/index.astro index c8719e9..5dddceb 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,128 +1,106 @@ --- +import Article from "../components/Article.astro"; import Hero from "../components/Hero.astro"; -import Prose from "../components/Prose.astro"; import Layout from "../layouts/Layout.astro"; --- - -

[Image: human atlas (solid, should look like a brain)]

-
- -

Pinpoint

-

Interactive 3D visualization and automation tools for human neuroscience research and - neurosurgery.

-
+ -
- Launch - Learn More -
-
-
+ -
+ +
+
+
+

Pinpoint

+

Interactive 3D visualization and automation tools for human neuroscience research and + neurosurgery.

+
- -

[Insert multiple probes with planned routes and highlighted regions]

- -

Pinpoint aims to advance large-scale neuroscience research with intuitive browser-based - planning and - automation - tools for efficient and reproducible neurosurgery.

-
-
+
-
+ +
+
- -

[Remove probes, exploded brain view, highlight various regions on scroll]

- -

Human behavior engage multiple regions of the brain.

-

Current tools are designed to study individual brain regions, depend on manual input, and require - extensive expertise ot operate.

-

Modern neuroscientists need tools that enable the study of the whole brain to better understand human - behavior - and - cure neurodegenerative diseases that affect the whole brain like Parkinson's and Alzheimer's.

-
-
+ +
+ +
+

Pinpoint aims to advance large-scale neuroscience research with intuitive browser-based planning and + automation tools for efficient and reproducible neurosurgery. +

+
+
-
+ +
+
+

Human behavior engage multiple regions of the brain.

+

Current tools are designed to study individual brain regions, depend on manual input, and + require extensive expertise ot operate.

+

Modern neuroscientists need tools that enable the study of the whole brain to better understand + human behavior and cure neurodegenerative diseases that affect the whole brain like Parkinson's + and Alzheimer's.

+
+
+
- -

[Move brain back to the center]

- -

Plan Your Next Experiment

-
-
- -
- - -

[Scroll through various probe 3d models; left to right with labels, rat tetrode array, use nanoject for viral - injector]

- -

Simulate your lab

-

Use Neuropixel probes, viral injectors, and 2-photon lasers

-
-
+ +
+
+

Plan Your Next Experiment in Pinpoint

+
+
-
+
+
+

Simulate your lab

+

Use Neuropixel probes, viral injectors, and 2-photon lasers

+
+
- -

[Insert 1-shank neuro pixel probe vertically, bring in channel map, show coordinates in the corner, consider - mouse brain]

-

[]

- -

View your plan in 3D

-
+
+
+

View your plan in 3D

+
+
-
- - - - - - - - - -
- - - - -

[Probes fade into insertion lines]

- -

Automate Your Experiment

-

Beta

-
-
- -
- - -

[Draw plan lines from probes off screen on scroll]

- -

Automatically generate plans...

-
-
- + +
+
+

Automate Your Experiment

+
+
-
+
+
+

Robot-assisted surgeries.

+
+
- - -

[From off screen, probes move in while following the plan lines]

- -

... and run them in parallel

-
+
+
+

Future: Complete Automation

+
+
-
+ + \ No newline at end of file diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 7e674e7..af2e14f 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -6,7 +6,11 @@ import { dark } from "daisyui/src/theming/themes"; export default { content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], theme: { - extend: {}, + extend: { + height: { + "1/2dvh": "50dvh", + }, + }, }, plugins: [typography, daisyui],