TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Codefied-CodePix/KaroCar-platform/llms.txt
Use this file to discover all available pages before exploring further.
web app is the public-facing KaroCar website — the front door of the entire platform. Built with Next.js 16 and Tailwind CSS v4, it delivers the marketing homepage and serves as the primary entry point for visitors discovering KaroCar services. The root layout (layout.tsx) loads the Geist and Geist Mono Google fonts via next/font, wires up global styles, and wraps every page in a flex column to ensure full-height rendering across light and dark modes.
Tech Stack
Next.js 16.2.7
App Router with server components, file-based routing, and the latest Next.js performance optimisations.
React 19.2.4
The latest stable React with concurrent features and improved hydration.
Tailwind CSS v4
Utility-first CSS with the new v4 engine powered by
@tailwindcss/postcss.TypeScript 5
Strict type-checking across all source files with shared
tsconfig from the monorepo root.Directory Structure
app/page.tsx) renders the KaroCar Website heading alongside the Next.js logo and action links. The root layout initialises the Geist Sans and Geist Mono font variables and applies antialiased rendering to the body.
Package Configuration
Below is thepackage.json for the web app. It has no internal workspace dependencies — all shared tooling comes through dev dependencies.
Development Commands
Start the development server for theweb app using either the global monorepo command or a filtered Turborepo invocation:
Building & Starting
Run a production build and then serve it with the Next.js production server:Install dependencies
From the monorepo root, run
pnpm install to ensure all workspace packages are linked.Build the app
Run
turbo build --filter=web. Turborepo caches the output in .turbo/ so subsequent builds only rebuild changed files.Linting
@karo-car/eslint-config package at the monorepo root. See ESLint Config for the full rule set.
Related Pages
Monorepo Structure
Understand how all six apps fit together in the Turborepo workspace.
Local Setup
First-time setup guide for getting the full platform running locally.
Building
Deep-dive into Turborepo build pipelines and caching strategies.
Remote Caching
Speed up CI/CD with Turborepo remote cache.
