From 09cc895c441357554ee4ee83dd39ef38f8ce1cb5 Mon Sep 17 00:00:00 2001
From: BrotherlyHamlet16 <80749000+Clever-Niwagaba@users.noreply.github.com>
Date: Mon, 2 Dec 2024 22:26:52 +0300
Subject: [PATCH] done
---
.gitignore | 46 +-
README.md | 1046 +-
package-lock.json | 58103 +++++++++++++++++----------------
package.json | 80 +-
src/App.css | 76 +-
src/App.js | 40 +-
src/App.test.js | 16 +-
src/components/CoolButton.js | 14 +
src/components/FormField.js | 18 +
src/components/Navbar.js | 21 +
src/components/SignupForm.js | 16 +
src/index.css | 16 +-
src/index.js | 34 +-
src/reportWebVitals.js | 26 +-
src/setupTests.js | 10 +-
tailwind.config.js | 8 +
16 files changed, 30168 insertions(+), 29402 deletions(-)
create mode 100644 src/components/CoolButton.js
create mode 100644 src/components/FormField.js
create mode 100644 src/components/Navbar.js
create mode 100644 src/components/SignupForm.js
create mode 100644 tailwind.config.js
diff --git a/.gitignore b/.gitignore
index 4d29575..c067634 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,23 +1,23 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
diff --git a/README.md b/README.md
index 9b74ece..3a57a2f 100644
--- a/README.md
+++ b/README.md
@@ -1,523 +1,523 @@
-
-
-
-
-# LAB | React Bulma Components
-
-
-
-## Introduction
-
-
-
-Do you know [Bulma](https://bulma.io/), a very nice alternative to Bootstrap as a CSS framework? We are going to create a simple website with Bulma and React!
-
-
-
-## Setup
-
-
-
-- Fork this repo
-
-- Clone this repo
-
-- Open the LAB and start:
-
-
-
-```bash
-
-$ cd lab-bulma-components
-
-$ npm install
-
-$ npm start
-
-```
-
-
-
-## Submission
-
-
-
-- Upon completion, run the following commands:
-
-
-
-```bash
-
-git add .
-
-git commit -m "done"
-
-git push origin master
-
-```
-
-
-
-- Create a Pull Request so we can check your work.
-
-
-
-## Getting Started
-
-
-
-Clean the `App.js` component so that it has the following structure:
-
-
-
-```jsx
-
-// src/App.js
-
-import "./App.css";
-
-
-
-function App() {
-
-return