diff --git a/index.html b/index.html deleted file mode 100644 index ae33772..0000000 --- a/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - DocV - GED Souveraine et Sécurisée - - - -
- - - - diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index 15f3080..0000000 --- a/src/App.tsx +++ /dev/null @@ -1,118 +0,0 @@ -import React from 'react' -import { Shield, Key, Database, Zap, Users, Globe, CheckCircle, ArrowRight, Code } from "lucide-react" - -function App() { - return ( -
- {/* Header */} -
-
-
- - DocV - - By 4NK - -
- -
-
- - {/* Hero Section */} -
-
-

- Sécurisez votre entreprise avec la GED simple et souveraine -

-

- DocV propose une approche révolutionnaire de la gestion d'identité, garantissant sécurité, souveraineté et - conformité dans la gestion de vos documents et processus métier. -

-
- - -
-
-
- - {/* Product Features */} -
-
-

Le produit

- -
-
-
- -

Login cryptographique ultra-simplifié

-
-
-

- Aucun mot de passe, aucun OTP, aucun mail, aucun code, aucune application. -

-

- Notifications transverses et temps réel sur l'avancement des traitements. -

-
-
- -
-
- -

IA embarquée

-
-
-

OCR, classification et extraction avec IA locale.

-

L'IA, ses données et ses traitements restent locaux.

-

Interface conversationnelle pour suivre les dossiers.

-
-
- -
-
- -

Gestion souveraine

-
-
-

Vos données restent sur vos serveurs.

-

Conformité RGPD et standards de sécurité.

-

Audit trail complet et traçabilité.

-
-
-
-
-
- - {/* Footer */} - -
- ) -} - -export default App - diff --git a/src/index.css b/src/index.css deleted file mode 100644 index 3030c72..0000000 --- a/src/index.css +++ /dev/null @@ -1,35 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -:root { - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; - line-height: 1.5; - font-weight: 400; - - color-scheme: light dark; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; - - font-synthesis: none; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; - display: flex; - place-items: center; - min-width: 320px; - min-height: 100vh; -} - -#root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; -} - diff --git a/src/main.tsx b/src/main.tsx deleted file mode 100644 index 6eedccb..0000000 --- a/src/main.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' -import App from './App' -import './index.css' - -ReactDOM.createRoot(document.getElementById('root')!).render( - - - , -) - diff --git a/vite.config.ts b/vite.config.ts deleted file mode 100644 index d4e11c6..0000000 --- a/vite.config.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' -import path from 'path' - -export default defineConfig({ - plugins: [react()], - resolve: { - alias: { - '@': path.resolve(__dirname, './src'), - '@/components': path.resolve(__dirname, './components'), - '@/lib': path.resolve(__dirname, './lib'), - }, - }, - server: { - port: 3000, - host: true, - }, - build: { - outDir: 'dist', - sourcemap: true, - }, -}) -