diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..ffd8bea
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,19 @@
+Flarenet Proprietary License
+
+Copyright (c) 2024 Flarenet
+
+All rights reserved.
+
+This software and associated documentation files (the "Software") are proprietary and confidential.
+The Software is protected by copyright laws and international copyright treaties, as well as other
+intellectual property laws and treaties.
+
+No part of this Software may be:
+1. Reproduced, distributed, or transmitted in any form or by any means
+2. Reverse engineered, decompiled, or disassembled
+3. Used to create derivative works
+4. Used for commercial purposes without explicit written permission
+
+Unauthorized copying, modification, distribution, or use of this Software, via any medium, is strictly prohibited.
+
+For licensing inquiries, please contact: [Your Contact Information]
\ No newline at end of file
diff --git a/README.md b/README.md
index f768e33..1742248 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,69 @@
-# React + Vite
+# Flarenet - AI-Powered Web Deployment Platform
-This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
+
+
+
-Currently, two official plugins are available:
+## Overview
-- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
-- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
+Flarenet is a cutting-edge web deployment platform that leverages AI-driven workflows to streamline and automate the deployment process. Built with a robust architecture incorporating Kafka, Redis, and advanced ML models, Flarenet provides an intelligent, scalable solution for modern web deployment needs.
+
+
+
+
+
+## Key Features
+
+- 🤖 AI-Assisted Deployment Workflows
+- 🚀 Automated Infrastructure Management
+- 📊 Real-time Monitoring & Analytics
+- 🔄 High-Throughput Message Processing
+- 🛡️ Enterprise-Grade Security
+- 🎯 Intelligent Resource Optimization
+
+## Technology Stack
+
+### Core Infrastructure
+- **Message Broker:** Apache Kafka (Self-hosted)
+- **Caching Layer:** Redis, ElastiCache
+- **Database:** RDS, ClickHouse
+- **Load Balancer:** NGINX
+- **Queue Management:** Bull MQ
+
+### AI/ML Components
+- **LLM Integration:** LangChain
+- **Model Deployment:** Groq
+- **Custom ML Models:** Self-hosted inference
+
+## Architecture
+
+### Kafka Event Processing Architecture
+
+
+
+
+### Key Components
+1. **Event Producers**
+ - Deployment Triggers
+ - System Monitors
+ - User Actions
+
+2. **Event Processors**
+ - Real-time Analytics
+ - Log Aggregation
+ - Metric Collection
+
+3. **Event Consumers**
+ - Deployment Engines
+ - Notification Services
+ - Monitoring Systems
+
+## Getting Started
+
+### Prerequisites
+```bash
+node >= 16.x
+npm >= 8.x
+Redis >= 6.x
+Kafka >= 3.x
+```
diff --git a/assets/fNet1.png b/assets/fNet1.png
new file mode 100644
index 0000000..7afe570
Binary files /dev/null and b/assets/fNet1.png differ
diff --git a/assets/fNet2.png b/assets/fNet2.png
new file mode 100644
index 0000000..06a23b9
Binary files /dev/null and b/assets/fNet2.png differ
diff --git a/assets/kafka-architecture.png b/assets/kafka-architecture.png
new file mode 100644
index 0000000..2deb2bd
Binary files /dev/null and b/assets/kafka-architecture.png differ
diff --git a/package.json b/package.json
index c4ac82d..61b1853 100644
--- a/package.json
+++ b/package.json
@@ -3,6 +3,7 @@
"private": true,
"version": "0.0.0",
"type": "module",
+ "license": "UNLICENSED",
"scripts": {
"dev": "vite",
"build": "vite build",
@@ -58,3 +59,4 @@
"vite": "^5.4.10"
}
}
+
diff --git a/src/App.jsx b/src/App.jsx
index 216624e..4d31bef 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,3 +1,11 @@
+/**
+ * @license
+ * Flarenet - Proprietary Software
+ * Copyright (c) 2024 Flarenet
+ * All Rights Reserved
+ * Unauthorized copying of this file, via any medium is strictly prohibited
+ */
+
import React from 'react';
import { BrowserRouter as Router, Route, Routes, useLocation } from 'react-router-dom';
import LandingPage from './components/pages/LandingPage';