Skip to content

Commit a896f09

Browse files
committed
signup component, readme pic
1 parent 22e5e61 commit a896f09

33 files changed

+1335
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ Compilation of Frontend Mentor Challenges
22
on https://www.frontendmentor.io/challenges
33

44
LIVE SITE: https://frontendmentor-showcase.netlify.app/
5+
6+
Summary of this project:
7+
8+
![Project Summary](./public/assets/summary.png)

package-lock.json

Lines changed: 157 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,26 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6+
"@headlessui/react": "^1.7.13",
7+
"@hookform/resolvers": "^3.0.1",
68
"@testing-library/jest-dom": "^5.16.5",
79
"@testing-library/react": "^13.4.0",
810
"@testing-library/user-event": "^13.5.0",
911
"animejs": "^3.2.1",
1012
"aos": "^3.0.0-beta.6",
1113
"axios": "^1.2.1",
14+
"clsx": "^1.2.1",
1215
"framer-motion": "^8.1.7",
1316
"gsap": "^3.11.4",
1417
"json-loader": "^0.5.7",
1518
"react": "^18.2.0",
1619
"react-dom": "^18.2.0",
20+
"react-hook-form": "^7.43.9",
1721
"react-router-dom": "^6.4.3",
1822
"react-scripts": "5.0.1",
1923
"uuid": "^9.0.0",
20-
"web-vitals": "^2.1.4"
24+
"web-vitals": "^2.1.4",
25+
"yup": "^1.0.2"
2126
},
2227
"scripts": {
2328
"start": "react-scripts start",

public/assets/summary.png

441 KB
Loading

public/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@
1616
<body>
1717
<noscript>You need to enable JavaScript to run this app.</noscript>
1818
<div id="root"></div>
19-
2019
</body>
2120
</html>

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import ProfileCard from './components/newbie/ProfileCard/ProfileCard';
3939
import StatsPreview from './components/newbie/StatsPreview/StatsPreview';
4040
import CommentSection from './components/intermediate/CommentSection/CommentSection';
4141
import BaseApparel from './components/newbie/BaseApparel/BaseApparel';
42+
import SignUp from './components/newbie/SignUp/SignUp';
4243

4344

4445

@@ -80,6 +81,7 @@ AOS.init({
8081
<Route path='/components/stats-preview' element={<StatsPreview></StatsPreview>}/>
8182
<Route path='/components/comment-section' element={<CommentSection></CommentSection>}/>
8283
<Route path='/components/base-apparel' element={<BaseApparel></BaseApparel>}/>
84+
<Route path='/components/sign-up' element={<SignUp></SignUp>}/>
8385

8486
{/* Pages */}
8587
<Route path='/pages' element={<Pages></Pages>}/>

src/components/data.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,13 @@ export const componentCardData = [
224224
type: "component",
225225
link:"/components/base-apparel",
226226
},
227+
{
228+
id:"26",
229+
title: "Intro component with sign-up form",
230+
desc: "Form",
231+
img: "https://res.cloudinary.com/dz209s6jk/image/upload/f_auto,q_auto,w_475/Challenges/ficuxtmo5kmd5bb8lmws.jpg",
232+
category:"newbie",
233+
type: "component",
234+
link:"/components/sign-up",
235+
},
227236
]

0 commit comments

Comments
 (0)