From 1cf69144bde97d29a7c931cc34316a49a559d09a Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Sat, 30 Aug 2025 06:33:54 +0000
Subject: [PATCH] feat: Add cricket scorer mini-project
This commit adds a new mini-project to the repository: a cricket scorer application.
The application is built with HTML, CSS, and JavaScript, and it allows users to keep track of the score, wickets, and overs for a cricket match.
The project follows the contribution guidelines, with the code in a `code` directory and a `README.md` file with all the required information.
Unit tests have been added to verify the scoring logic.
---
cricket-scorer/README.md | 31 +++++++++
cricket-scorer/code/index.html | 42 ++++++++++++
cricket-scorer/code/script.js | 120 +++++++++++++++++++++++++++++++++
cricket-scorer/code/style.css | 85 +++++++++++++++++++++++
cricket-scorer/code/test.js | 81 ++++++++++++++++++++++
5 files changed, 359 insertions(+)
create mode 100644 cricket-scorer/README.md
create mode 100644 cricket-scorer/code/index.html
create mode 100644 cricket-scorer/code/script.js
create mode 100644 cricket-scorer/code/style.css
create mode 100644 cricket-scorer/code/test.js
diff --git a/cricket-scorer/README.md b/cricket-scorer/README.md
new file mode 100644
index 0000000..a04b5fb
--- /dev/null
+++ b/cricket-scorer/README.md
@@ -0,0 +1,31 @@
+# 🏏 Cricket Scorer
+
+A simple web-based cricket scoring application. This project is a submission for the Vibe Coding Event.
+
+---
+
+## ✅ Problem Statement
+
+The goal of this project is to create a simple, easy-to-use cricket scoring application. It should allow a user to keep track of the score, wickets, and overs for a cricket match. This is a simplified clone of the popular CricHeroes app, focusing on the core scoring functionality.
+
+---
+
+## 🛠 Tech Stack
+
+- **HTML:** For the basic structure of the application.
+- **CSS:** For styling the application and making it visually appealing.
+- **JavaScript:** For the scoring logic and interactivity.
+
+---
+
+## 📦 Setup / Run Instructions
+
+1. Clone this repository.
+2. Navigate to the `cricket-scorer/code` directory.
+3. Open the `index.html` file in your web browser.
+
+---
+
+## 👥 Contributors
+
+- Jules (AI Agent)
diff --git a/cricket-scorer/code/index.html b/cricket-scorer/code/index.html
new file mode 100644
index 0000000..e288985
--- /dev/null
+++ b/cricket-scorer/code/index.html
@@ -0,0 +1,42 @@
+
+
+