Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,26 @@ const projects = [
type: 'PDE framework',
description: 'A high-performance spectral and pseudo-spectral PDE solver with natural mathematical syntax across CPUs, GPUs, and distributed clusters.',
tags: ['Fourier', 'Chebyshev', 'GPU', 'MPI'],
source: 'https://github.com/subhk/Tarang.jl',
docs: 'https://subhk.github.io/Tarang.jl/stable/',
source: 'https://github.com/SpectralFluid/Tarang.jl',
docs: 'https://spectralfluid.github.io/Tarang.jl/stable/',
icon: Waves,
},
{
name: 'SHTnsKit.jl',
type: 'Transform library',
description: 'Pure-Julia spherical harmonic transforms with scalar and vector analysis, multithreading, and distributed-memory parallelism.',
tags: ['Spherical harmonics', 'Pure Julia', 'MPI'],
source: 'https://github.com/subhk/SHTnsKit.jl',
docs: 'https://subhk.github.io/SHTnsKit.jl/',
source: 'https://github.com/SpectralFluid/SHTnsKit.jl',
docs: 'https://spectralfluid.github.io/SHTnsKit.jl/',
icon: Orbit,
},
{
name: 'GeoDynamo.jl',
type: 'Geophysical solver',
description: 'A Julia solver for rotating convection and self-consistent dynamos in spherical shells and full balls.',
tags: ['MHD', 'Rotating flows', 'Spherical domains'],
source: 'https://github.com/subhk/GeoDynamo.jl',
source: 'https://github.com/SpectralFluid/GeoDynamo.jl',
docs: 'https://spectralfluid.github.io/GeoDynamo.jl/',
icon: Layers3,
},
{
Expand All @@ -52,7 +53,7 @@ export default function Home() {
<a href="#projects">Software</a>
<a href="#science">Science</a>
<a href="#about">About</a>
<a className="github-link" href="https://github.com/subhk/SpectralFluid.github.io"><Code2 size={16} aria-hidden="true" /> GitHub</a>
<a className="github-link" href="https://github.com/SpectralFluid"><Code2 size={16} aria-hidden="true" /> GitHub</a>
</nav>
</div>
</header>
Expand All @@ -65,7 +66,7 @@ export default function Home() {
<p className="hero-lead">Fast, readable tools for partial differential equations, spherical harmonic transforms, stability analysis, and geophysical flow.</p>
<div className="hero-actions">
<a className="button button-primary" href="#projects">Explore the software <ArrowRight size={17} aria-hidden="true" /></a>
<a className="text-link" href="https://github.com/subhk/SpectralFluid.github.io">Browse the source <ArrowUpRight size={15} aria-hidden="true" /></a>
<a className="text-link" href="https://github.com/SpectralFluid">Browse the source <ArrowUpRight size={15} aria-hidden="true" /></a>
</div>
</div>
<div className="equation-card" aria-label="Pseudo-spectral method summary">
Expand Down Expand Up @@ -134,7 +135,7 @@ export default function Home() {

<section className="closing-panel">
<div><p className="overline">Open research software</p><h2>Read the code. Reproduce the method. Build the next solver.</h2></div>
<a className="button button-primary" href="https://github.com/subhk/SpectralFluid.github.io">Visit GitHub <ArrowUpRight size={17} aria-hidden="true" /></a>
<a className="button button-primary" href="https://github.com/SpectralFluid">Visit GitHub <ArrowUpRight size={17} aria-hidden="true" /></a>
</section>
</main>

Expand Down