diff --git a/README.md b/README.md
new file mode 100644
index 0000000..53be0fd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,100 @@
+# đŽ Terminal TicTacToe
+
+> A developer-friendly TicTacToe game that runs in your terminal. Take a break from coding and enjoy a quick game without leaving your development environment! â¨ī¸
+
+```ascii
+ _______ ______ ______
+/_ __(_)__/_ __/__ ___/_ __/__ ___
+ / / / / __// / / _ `/ __// / / _ \/ -_)
+/_/ /_/\__//_/ \_,_/\__//_/ \___/\__/
+```
+
+
+
+[![Go Version](https://img.shields.io/badge/Go-1.21.7+-00ADD8?style=flat-square&logo=go)](https://golang.org)
+[![License](https://img.shields.io/badge/License-MIT-green.svg?style=flat-square)](LICENSE)
+[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
+
+
+
+## ⨠Features
+
+- đ¯ Play TicTacToe directly in your terminal
+- â¨ī¸ Vim-style navigation (h,j,k,l) or arrow keys
+- đ¨ Colorful interface with intuitive controls
+- đĨ Two-player gameplay on the same terminal
+- đ Simple and clean UI with borders and highlighting
+
+## đ Installation
+
+1. Make sure you have Go installed (version 1.21.7 or higher)
+2. Install the game using:
+
+```bash
+go install github.com/abdullahnettoor/tictactoe@latest
+```
+
+## đŽ How to Play
+
+1. Start a new game:
+```bash
+tictactoe new
+```
+
+2. Controls:
+ - đšī¸ Move: Arrow keys or Vim keys (h,j,k,l)
+ - â
Place mark: Enter
+ - â Quit game: q or Ctrl+C
+
+3. Players take turns placing their marks (X and O)
+4. First player to get three in a row (horizontal, vertical, or diagonal) wins! đ
+
+## đģ Development
+
+### Prerequisites
+
+- đ§ Go 1.21.7 or higher
+- đĻ Dependencies:
+ - [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) - Terminal UI framework
+ - [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) - Style definitions
+ - [github.com/spf13/cobra](https://github.com/spf13/cobra) - CLI framework
+
+### đ ī¸ Building from Source
+
+1. Clone the repository:
+```bash
+git clone https://github.com/abdullahnettoor/tictactoe.git
+```
+
+2. Navigate to the project directory:
+```bash
+cd tictactoe
+```
+
+3. Build the project:
+```bash
+go build
+```
+
+## đ Project Structure
+
+```
+.
+âââ đ main.go # Entry point of the application
+âââ đ cmd/
+â âââ đ root.go # Root command configuration
+â âââ đ new.go # New game command handler
+â âââ đ view/board/ # Game board implementation
+â âââ đ board.go # Core game logic and UI
+â âââ đ utils.go # Helper functions and styling
+âââ đ go.mod # Go module file
+```
+
+## đ License
+
+This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
+
+## đ¤ Author
+
+Made with â¤ī¸ by [Abdullah Nettoor](https://github.com/abdullahnettoor)
+