@@ -6,6 +6,7 @@ import { FunderSection } from "@/components/funding/FunderSection"
66import { Badge } from "@/components/ui/badge"
77import { Button } from "@/components/ui/button"
88import { Card , CardContent , CardDescription , CardHeader , CardTitle } from "@/components/ui/card"
9+ import { Aurora } from "@/components/visuals/Aurora"
910import publicationsData from "@/data/publications.json"
1011import researchData from "@/data/research.json"
1112
@@ -15,7 +16,8 @@ export default function Home() {
1516 return (
1617 < div className = "flex flex-col" >
1718 { /* Hero Section */ }
18- < section className = "relative border-b" >
19+ < section className = "relative overflow-hidden border-b" >
20+ < Aurora />
1921 < div className = "section-container py-20 sm:py-24 lg:py-32" >
2022 < div className = "mx-auto grid max-w-7xl grid-cols-1 items-center gap-8 lg:grid-cols-[2.5fr_1fr] lg:gap-16" >
2123 { /* Logo - Mobile Only (Top) */ }
@@ -31,7 +33,7 @@ export default function Home() {
3133 href = "/research"
3234 className = "group relative inline-block underline decoration-foreground/40 decoration-1 underline-offset-4 transition-colors hover:decoration-foreground sm:no-underline"
3335 >
34- computational neuroscience
36+ < span className = "text-gradient" > computational neuroscience</ span >
3537 < span className = "absolute bottom-1 left-0 hidden h-[1px] w-full bg-foreground/25 sm:block" />
3638 < span className = "absolute bottom-1 left-0 hidden h-[1px] w-0 bg-foreground transition-all duration-300 group-hover:w-full sm:block" />
3739 </ Link > { " " }
@@ -40,7 +42,7 @@ export default function Home() {
4042 href = "/research"
4143 className = "group relative inline-block underline decoration-foreground/40 decoration-1 underline-offset-4 transition-colors hover:decoration-foreground sm:no-underline"
4244 >
43- machine learning
45+ < span className = "text-gradient" > machine learning</ span >
4446 < span className = "absolute bottom-1 left-0 hidden h-[1px] w-full bg-foreground/25 sm:block" />
4547 < span className = "absolute bottom-1 left-0 hidden h-[1px] w-0 bg-foreground transition-all duration-300 group-hover:w-full sm:block" />
4648 </ Link >
0 commit comments