Fortune Seeker’s content — every heading, bio card, project entry, skill sigil, and testimonial — is defined as plain JavaScript data arrays inside the source page components. To make the template your own, locate the relevant data object in the source file for that page and replace the placeholder values with your details. No routing changes or component rewrites are needed for content updates.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/fortune-seeker/llms.txt
Use this file to discover all available pages before exploring further.
Content Overview
About / Bio
The three-card “Past / Present / Future” spread on the About page.
Projects
The Major Arcana grid of project cards with tech stacks and links.
Skills
The six skill sigils, each mapped to a school of magic.
Work History
The vertical timeline of roles, companies, and descriptions.
Blog Posts
The Scribe’s Pages article list with dates and excerpts.
Testimonials
The Channeled Reviews cards with quotes and authors.
Updating Your Bio
The About page renders a three-card tarot spread that maps your career arc to The Past, The Present, and The Future. Each card has a title, subtitle, icon component, and freeform content string.content string on each card with your own narrative. The delay values control the Framer Motion entrance stagger — increase the gap for a more dramatic reveal or set them all to 0 to animate simultaneously.
Updating Projects
The Projects page (labelled Major Arcana in the nav) displays up to four project cards in a responsive grid. Each card carries a thematicarcana name alongside the real project title, making it easy to lean into the divination aesthetic or tone it down.
| Field | Purpose |
|---|---|
id | Unique string key for React |
title | Real project name shown on the card |
arcana | Thematic subtitle — rename or remove as you like |
numeral | Roman numeral displayed as a decorative badge |
tech | Array of technology tags rendered as pill badges |
link | Live demo URL (leave empty to hide the button) |
github | Repository URL (leave empty to hide the button) |
Updating Skills
The Skills page (labelled Cast Spells) renders six skill sigils, each associated with a school of magic drawn from classic RPG lore. The default mapping is:| Skill | School |
|---|---|
| React | Evocation |
| TypeScript | Abjuration |
| Node.js | Conjuration |
| Tailwind | Illusion |
| GraphQL | Divination |
| Python | Transmutation |
path field accepts any valid SVG path string. Each sigil is rendered inside a fixed-size SVG viewport, so keep path coordinates within a 0 0 100 100 viewBox for consistent sizing.
Updating Work History
The Work History page (labelled Pendulum Swing) renders a vertical timeline. Each entry needs a year range, a job title, a company name, and a short description.Updating Blog Posts
The Blog page (labelled Scribe’s Pages) displays a list of articles. Each entry uses a Roman numeral (num) as a decorative index alongside the title, publication date, and a one-line excerpt.
url field and wiring it to the card’s anchor tag in the Blog component.
Navigation Labels
Fortune Seeker’s sidebar and mobile menu are driven by anavLinks array. Each entry maps a route path to its thematic display label:
label without touching the path — the route will keep working as-is. If you prefer conventional labels (e.g. “About” instead of “The Reader”), simply update the string. See the Routes page if you also need to add or remove entries from this array.
All content data in the deployed template lives inside the compiled
assets/main.js bundle. Editing that file directly is possible but fragile — any rebuild will overwrite your changes. For a maintainable workflow, fork the source repository where each page’s data objects live in individual component files alongside their JSX, making updates straightforward and rebuild-safe.