Aurora Drift is a static Vite project, so there is nothing to configure, provision, or authenticate before you can run it. All you need is Node.js 18+ and a package manager. The steps below take you from an empty directory to a fully animated portfolio running locally.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/aurora-drift/llms.txt
Use this file to discover all available pages before exploring further.
This gives you the complete project directory, including the compiled
assets/ bundle, all React components, the ten pre-built page HTML files, and the full Tailwind CSS output — everything you need is already there.The key runtime dependencies pulled in are React 18, Framer Motion, React Router DOM v6, and Tailwind CSS. The
devDependencies include Vite and its React plugin for fast HMR during development.Open http://localhost:5173 in your browser. You will immediately see the
navy deep-space background appear, the three-layer aurora SVG begin its slow wave animation, and the navigation bar fade in across the top.CursorGlow radial gradient will follow your cursor with spring lag.PageTransition wrapper will blur and slide the outgoing page up while the incoming page fades up from below.Building for Production
When you are ready to ship, run the Vite build command:dist/ folder of fully static files — plain HTML, pre-bundled JavaScript, and a single Tailwind CSS output. The result is deployable to any static host with zero server-side logic required.
The cloned repository is itself a compiled output — it does not include source files such as
vite.config.js or tailwind.config.js. The assets/ directory contains the pre-built JavaScript and CSS bundles. If you need to modify Vite or Tailwind configuration, you will need the original Vite project source used to produce this output.The build output contains placeholder content throughout — sample bio text, dummy project cards, fake testimonials, and a non-functional contact form. Before publishing your portfolio, see Adapting the Portfolio for a guided walkthrough of every place you need to swap in your real content.