Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions prototypes/valuation-review-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
*.tsbuildinfo
16 changes: 16 additions & 0 deletions prototypes/valuation-review-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Arabic-first real estate valuation review prototype

Simple React + TypeScript + Tailwind prototype for:
- RTL Arabic UI
- PDF upload (file selection)
- Assumption extraction (keyword-based prototype)
- IVS / IFRS 13 missing-items checklist
- Risk flags
- Word summary export

## Run

```bash
npm install
npm run dev
```
12 changes: 12 additions & 0 deletions prototypes/valuation-review-app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>مراجعة تقييم عقاري</title>
</head>
<body class="bg-slate-100">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading
Loading