# Aravel — Project Website

This is the official homepage for **Aravel**, an AI-native, open-source developer ecosystem that unifies learning, collaboration, software development, knowledge sharing, professional networking, and intelligent assistance into one platform.

This repository contains the static marketing/documentation site only — not the Aravel application itself.

> **Status:** Aravel's source code is not public yet. The project is in active early development (see the Roadmap section on the site). This site exists to introduce the project, not to link to a repository that doesn't exist yet — there are intentionally no GitHub links anywhere on the page.

## Stack

Plain HTML5, CSS3, and vanilla JavaScript. No frameworks, no bundler, no build step. Fonts (Space Grotesk, Inter, JetBrains Mono) load from Google Fonts via `<link>` — everything else is self-contained.

```
/
├── index.html          # All page content and structure
├── style.css            # Design tokens + component styles (dark/light themes)
├── script.js             # Nav, theme toggle, scroll effects, copy buttons, FAQ
├── manifest.json         # Web app manifest
├── robots.txt
├── sitemap.xml
├── assets/
│   ├── favicon-16.png, favicon-32.png, favicon-48.png, apple-touch-icon.png
│   ├── icons/             # Individual line icons used across the page
│   └── images/
│       ├── aravel-logo-source.png   # Original uploaded logo, untouched
│       ├── logo-mark-master.png     # Cropped square master used to derive icons
│       ├── logo-192.png, logo-512.png
│       └── og-cover.png             # Social share preview image
├── README.md
└── LICENSE                # Placeholder — final license pending
```

## Logo

The Aravel mark is the original, unmodified artwork provided for the project. It is only ever cropped and resized for different icon sizes (favicon, touch icon, manifest icons) — never redrawn, recolored, or altered. All brand colors on the site (the cyan-to-blue gradient) were sampled directly from the logo.

## Running locally

No build tools required. Open `index.html` directly in a browser, or serve it with any static file server:

```
python -m http.server 8080
```

Then visit `http://localhost:8080`.

## About the Aravel project

For the full project vision, technical architecture, roadmap, and development rules, see the Aravel Project Bible. The current backend foundation (`v0.7.0`) covers authentication, organizations, teams, projects, and project settings. Frontend development and most product-facing features are still planned — see the Roadmap section on the site for details.

## License

This site's license, along with the license for the wider Aravel project, is being finalized. See [`LICENSE`](./LICENSE).
