Your personal identity is spread across three source files:Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/dev.void/llms.txt
Use this file to discover all available pages before exploring further.
AuroraHero.js powers the landing page, PlanetaryProfile.js drives the /about card, and the page-level headings live as inline JSX strings inside the route components in assets/main.js. Every string you’ll want to change is documented here with the exact line context so you can find and replace it without hunting through minified output.
AuroraHero — Landing Page (/)
AuroraHero.js renders the full-screen intro section at the root route. It contains five distinct text areas.
Name Headline
The large gradient
h1 renders "Alex Vance" inside a <span> with a bg-clip-text gradient. Replace the string to change what visitors see first.Subheadline
The
h2 below the name reads "Architecting nebulas of code in the digital void." — your personal tagline.CTA Buttons
Two
<button> elements render "Initiate Sequence" and "View Telemetry". Both are currently no-op; add an onClick prop to wire them up.Quote & Signal
A
<section> below the hero holds the quote string and the static signal flavour text beneath it.Editing the name and headline
Locate theh1 and h2 blocks inside AuroraHero.js and replace the string values:
Establishing connection pre-text
The small monospaced label that animates in above the name:CTA buttons (with optional onClick)
Quote and signal intercepted text
Both strings live in the<section> that is rendered directly inside the home-route wrapper in assets/main.js:
PlanetaryProfile — About Page (/about)
PlanetaryProfile.js renders the 3-D tilt card that visitors see on the /about route. It contains your name, designation, two bio paragraphs, a location coordinate, a status label, and two avatar orbital labels.
Editing name and designation
Bio paragraphs
The two<p> elements inside the space-y-4 container hold your biography copy:
Coordinates, status, and avatar labels
Page Section Titles (assets/main.js)
Every route in the app has a dedicated wrapper component in assets/main.js. Each wrapper renders an h1 and an italic p subtitle that you can update independently.
| Route | Current h1 | Current subtitle |
|---|---|---|
/about | "Stellar Cartography" | "Mapping the origins and trajectory of the developer." |
/projects | "Probes & Payloads" | "Deployed projects currently orbiting the digital expanse." |
/skills | "Telemetry" | "Scanning the technical spectrum for active proficiencies." |
/work | "Mission Log" | "A chronological record of previous deployments and assignments." |
/case-studies | "Anomalies Investigated" | "Declassified flight recorder data from critical missions." |
/blog | "Field Notes from the Void" | "Intercepted transmissions and technical musings." |
/contact | "Open a Hailing Frequency" | "Establish a direct comms link across the void." |
/testimonials | "Voices from the Crew" | "Logs recorded by fellow travelers and commanders." |
Step-by-Step: Complete Identity Update
Update your name everywhere
Search the source for
Alex Vance — it appears in two places: the gradient <span> inside the h1 in AuroraHero.js, and the teal-coloured <span> inside the h2 in PlanetaryProfile.js. Replace both occurrences with your own name.Rewrite the hero tagline
In
AuroraHero.js, replace the h2 text "Architecting nebulas of code in the digital void." with a one-sentence description of what you do. Keep it under 60 characters so it stays on one line at large breakpoints.Update your role and bio
In
PlanetaryProfile.js, replace "Frontend Architect" in the h3 with your actual title, then rewrite both <p> bio paragraphs. The second paragraph uses a <span className="text-aurora-pink italic font-serif"> to highlight a key phrase — swap in your own emphasis word or remove the span entirely.Set your location and status
In
PlanetaryProfile.js, replace "San Francisco, CA" with your city and update "Accepting Transmissions" to reflect your current availability.Adjust the avatar orbital labels
The two orbital labels (
MASS: 1.4M LOC and ORBIT: 5 YRS EXP) are cosmetic stats. Update the numbers to reflect your actual lines-of-code estimate and years of experience.Refresh the quote and signal text
In
assets/main.js, inside the home-route R component, replace the h3 quote string and, if desired, the SIGNAL INTERCEPTED flavour text in the <p> below it.