HTI Docs

๐Ÿ“ File Structure Overview

This document explains the organization of the **HealthTech Innovators website** project. The structure supports both frontend routes, CMS integration (Contentful), and the documentation site (Fuma Docs).

๐Ÿงญ Project Root

/
โ”œโ”€โ”€ app/                    # Next.js App Router (main pages & routes)
โ”‚   โ”œโ”€โ”€ about-us/           # About page
โ”‚   โ”œโ”€โ”€ news-blog/          # Blog listing + post pages
โ”‚   โ”œโ”€โ”€ previous-events/    # Past event archive
โ”‚   โ”œโ”€โ”€ resource/           # Resource hub (tips, research, etc.)
โ”‚   โ”œโ”€โ”€ sign-up/            # Signup form or embed
โ”‚   โ”œโ”€โ”€ team/               # Team page
โ”‚   โ”œโ”€โ”€ test/               # Test pages or utilities
โ”‚   โ”œโ”€โ”€ upcoming-events/    # Upcoming event pages
โ”‚   โ”œโ”€โ”€ components/         # Local UI components for app pages
โ”‚   โ”œโ”€โ”€ event-test.tsx      # Event route testing
โ”‚   โ”œโ”€โ”€ layout.tsx          # App-wide layout wrapper
โ”‚   โ”œโ”€โ”€ not-found.tsx       # Custom 404 page
โ”‚   โ”œโ”€โ”€ page.tsx            # Home page (index)
โ”‚   โ””โ”€โ”€ providers.tsx       # Global Mantine + theme providers
โ”‚
โ”œโ”€โ”€ content/                # MDX-based documentation content (Fuma Docs)
โ”‚   โ””โ”€โ”€ docs/               # Actual doc pages (index.mdx, etc.)
โ”‚
โ”œโ”€โ”€ public/                 # Static assets (images, favicons, logos)
โ”‚
โ”œโ”€โ”€ globals.css             # Tailwind base styles
โ”œโ”€โ”€ next.config.js          # Next.js project configuration
โ”œโ”€โ”€ tailwind.config.ts      # Tailwind custom theme config
โ”œโ”€โ”€ tsconfig.json           # TypeScript configuration
โ”œโ”€โ”€ package.json            # Project metadata and dependencies
โ””โ”€โ”€ README.md               # Overview and onboarding guide

On this page