Remove edition console, route tape, frontline ticker, and venture-desk header
- Delete EditionConsole React component and its cover-console wrapper - Delete route-tape section (city stops list) - Delete frontline ticker section (field notes) - Delete venture-desk section-header (redundant description text) - Clean up unused imports (EditionConsole, routeStops, fieldNotes) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,18 +1,15 @@
|
|||||||
---
|
---
|
||||||
import SectionCard from "../components/SectionCard.astro";
|
import SectionCard from "../components/SectionCard.astro";
|
||||||
import EditionConsole from "../components/EditionConsole.jsx";
|
|
||||||
import LocaleCopy from "../components/LocaleCopy.astro";
|
import LocaleCopy from "../components/LocaleCopy.astro";
|
||||||
import {
|
import {
|
||||||
aiLabCapabilities,
|
aiLabCapabilities,
|
||||||
aiLabSources,
|
aiLabSources,
|
||||||
collageImages,
|
collageImages,
|
||||||
routeStops,
|
|
||||||
ventureDesk,
|
ventureDesk,
|
||||||
ventureSignals,
|
ventureSignals,
|
||||||
} from "../data/profile";
|
} from "../data/profile";
|
||||||
import {
|
import {
|
||||||
editorialPromises,
|
editorialPromises,
|
||||||
fieldNotes,
|
|
||||||
getSectionHref,
|
getSectionHref,
|
||||||
hero,
|
hero,
|
||||||
launchSections,
|
launchSections,
|
||||||
@@ -71,38 +68,11 @@ const projects = launchSections.find((section) => section.slug === "projects");
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="panel cover-console">
|
|
||||||
<EditionConsole client:load />
|
|
||||||
</div>
|
|
||||||
</aside>
|
</aside>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="container route-tape">
|
|
||||||
{routeStops.map((stop) => (
|
|
||||||
<span>
|
|
||||||
<strong>{stop.place}</strong>
|
|
||||||
<em><LocaleCopy copy={stop.note} /></em>
|
|
||||||
</span>
|
|
||||||
))}
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="container frontline">
|
|
||||||
{fieldNotes.en.map((_, i) => (
|
|
||||||
<span><LocaleCopy copy={{ en: fieldNotes.en[i], fr: fieldNotes.fr[i], nb: fieldNotes.nb[i] }} /></span>
|
|
||||||
))}
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section id="venture-desk" class="container venture-desk">
|
<section id="venture-desk" class="container venture-desk">
|
||||||
<div class="section-header section-header--tight">
|
|
||||||
<div class="section-header__title">Four Desks, One Signature</div>
|
|
||||||
<div class="section-header__meta">
|
|
||||||
This front page is not a brochure. It is the running file on the real occupations:
|
|
||||||
private AI, field consulting, jazz-adjacent live products, advocacy, and the long
|
|
||||||
European afterglow of the schools.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="venture-desk__grid">
|
<div class="venture-desk__grid">
|
||||||
{ventureDesk.map((venture) => (
|
{ventureDesk.map((venture) => (
|
||||||
<article class="panel venture-story">
|
<article class="panel venture-story">
|
||||||
|
|||||||
Reference in New Issue
Block a user