Remake portfolio landing page
Lint / lint (push) Successful in 26s

This commit is contained in:
Julien Valverdé
2026-07-27 06:27:24 +02:00
parent 40bba2cc23
commit cf8bef6abd
11 changed files with 1204 additions and 168 deletions
+175 -1
View File
@@ -1,4 +1,8 @@
import { createFileRoute } from "@tanstack/react-router"
import { ArrowDown, ArrowUpRight, Code2, GitBranch } from "lucide-react"
import { ProjectCard } from "@/components/portfolio/ProjectCard"
import { SectionHeading } from "@/components/portfolio/SectionHeading"
import { Win98Status } from "@/components/portfolio/Win98Status"
export const Route = createFileRoute("/_main/")({
@@ -6,5 +10,175 @@ export const Route = createFileRoute("/_main/")({
})
function RouteComponent() {
return <p className="text-center">Coming soon!</p>
return (
<main>
<header className="site-header">
<a className="site-mark" href="#top" aria-label="Julien Valverde, back to top">
<span>JV</span>
<span>Full-stack engineer<br />&amp; product builder</span>
</a>
<nav aria-label="Main navigation">
<a href="#work">Work</a>
<a href="#about">About</a>
<a href="#repositories">Repositories</a>
</nav>
</header>
<section className="hero" id="top">
<div className="hero__intro">
<p className="hero__kicker">Independent engineer · Chambéry, France</p>
<h1>
I build
<span>useful</span>
systems.
</h1>
<div className="hero__footer">
<p>
From open-source primitives to vertical products software with strong types,
clear interfaces, and a reason to exist.
</p>
<a className="brutal-button" href="#work">
Explore selected work
<ArrowDown aria-hidden="true" />
</a>
</div>
</div>
<aside className="hero__status" aria-label="Developer status">
<div className="hero__stamp" aria-hidden="true">EST. 2019 / WEB</div>
<Win98Status />
</aside>
</section>
<div className="ticker" aria-hidden="true">
<div>
<span>Effect</span><i></i>
<span>TypeScript</span><i></i>
<span>Product engineering</span><i></i>
<span>Open source</span><i></i>
<span>Effect</span><i></i>
<span>TypeScript</span><i></i>
<span>Product engineering</span><i></i>
<span>Open source</span><i></i>
</div>
</div>
<section className="work-section" id="work">
<SectionHeading
eyebrow="01 / Selected work"
title="Tools for developers. Products for people."
description="A selection of open-source libraries, production software, and what is currently taking shape."
/>
<div className="project-grid">
<ProjectCard
index="01"
title="effect-lens"
category="Open source / library"
description="An effectful Lens for focusing, subscribing to, and updating nested state—without losing typed failures or requirements along the way."
tags={["Effect", "State", "TypeScript"]}
href="https://www.npmjs.com/package/effect-lens"
linkLabel="View on npm"
variant="dark"
/>
<ProjectCard
index="02"
title="effect-view"
category="Open source / React"
description="A small bridge for writing React function components with Effect, designed around composable programs instead of scattered side effects."
tags={["Effect", "React", "DX"]}
href="https://www.npmjs.com/package/effect-view"
linkLabel="View on npm"
variant="light"
/>
<ProjectCard
index="03"
title="Comme le Chef"
category="SaaS / Food tech"
description="An online recipe workspace for composing and balancing culinary creations, tracking nutrition and allergens, and generating production documents."
tags={["Product", "SaaS", "Food tech"]}
href="https://commedeschef.com/"
linkLabel="Visit website"
variant="outline"
/>
</div>
</section>
<section className="upcoming-section">
<SectionHeading
eyebrow="02 / On the workbench"
title="Two new systems are booting."
description="Early-stage products in active development. More details will appear when there is something worth showing."
/>
<div className="upcoming-grid">
<ProjectCard
index="04"
title="FLOWpti"
category="Upcoming / Logistics"
description="Delivery route optimization for transport professionals—turning operational constraints into clearer, more efficient routes."
tags={["Routing", "Optimization", "B2B"]}
/>
<ProjectCard
index="05"
title="Sentinel"
category="Upcoming / Open source"
description="A self-hosted telemetry and observability stack that synchronizes OBD-II vehicle data for visualization, diagnostics, and remote insight."
tags={["OBD-II", "Telemetry", "Self-hosted"]}
variant="dark"
/>
</div>
</section>
<section className="about-section" id="about">
<div className="about-section__label">
<span>03</span>
<span>About</span>
</div>
<div className="about-section__copy">
<p className="about-section__lead">
Im Julien Valverde, a full-stack engineer and entrepreneur based in the French Alps.
</p>
<div className="about-section__columns">
<p>
I like the difficult middle: where domain problems, product decisions,
interface design, and systems engineering all meet.
</p>
<p>
My current work spans typed functional programming, React, operational
software, optimization, and self-hosted infrastructure.
</p>
</div>
</div>
</section>
<section className="repo-section" id="repositories">
<p className="repo-section__eyebrow">Source code, experiments, and works in progress</p>
<h2>Follow the commits.</h2>
<div className="repo-links">
<a href="https://git.valverde.cloud/" target="_blank" rel="noreferrer">
<GitBranch aria-hidden="true" />
<span><small>Primary forge</small>git.valverde.cloud</span>
<ArrowUpRight aria-hidden="true" />
</a>
<a href="https://github.com/Thiladev" target="_blank" rel="noreferrer">
<Code2 aria-hidden="true" />
<span><small>Public collaboration</small>github.com/Thiladev</span>
<ArrowUpRight aria-hidden="true" />
</a>
</div>
</section>
<footer className="site-footer">
<div>
<span>Julien Valverde</span>
<span>© {new Date().getFullYear()}</span>
</div>
<p>Build it well.<br />Make it useful.</p>
<a href="#top">Back to top </a>
</footer>
</main>
)
}