This is a standalone, lightweight, and modern landing page codebase designed for NeuralFoundry AI (to be hosted on neuralfoundryai.com).
It is completely decoupled from the main application dashboard (app.neuralfoundryai.com) and relies on HTML5 + custom CSS + Tailwind CSS (via CDN) to ensure high-performance loading speeds and low bundle weight.
index.html: Fully semantic, accessible, and responsive marketing page structure with a built-in interactive JavaScript simulator.styles.css: Ambient color variable mappings, glassmorphism panel styles, and keyframe animations matching the main dashboard.package.json: A simple configuration wrapper to facilitate local hosting and developer previewing using Vite.
To run the local server preview:
- Install dependencies:
npm install
- Run Vite development server:
npm run dev
- Open
http://localhost:5173in your browser.
Since this is a fully static landing page, you can host it immediately using modern hosting providers:
- Push the contents of the
marketing-site/folder to a new Git repository. - Connect your repository to Vercel, Netlify, or Cloudflare Pages.
- Configure the domain mappings for
neuralfoundryai.comin your hosting dashboard. - Set the Build Command as empty (or
npm run buildif bundling with Vite) and the Output Directory as.ordist(if built).
- Upload
index.htmlandstyles.cssdirectly to an S3 Bucket configured for static website hosting, then distribute it via CloudFront with SSL enabled.