Skip to content

Commit

Permalink
some-chenges
Browse files Browse the repository at this point in the history
  • Loading branch information
AnujRathour committed Oct 27, 2023
1 parent 8f65030 commit 0223cc0
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 2,555 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ dist-ssr
*.njsproj
*.sln
*.sw?
# Yarn
yarn.lock
3 changes: 1 addition & 2 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

@import "tailwindcss/base";

@import "tailwindcss/components";

@import "tailwindcss/utilities";
@import "tailwindcss/utilities";
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-router-dom": "^6.17.0",
"react-icons": "^4.10.1",
"react-router-dom": "^6.15.0",
"react-scroll-to-top": "^3.0.0"
},
"devDependencies": {
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "^4.1.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-plugin-react": "^7.33.2",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-react-refresh": "^0.4.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.5",
"vite": "^4.5.0"
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.3.3",
"vite": "^4.4.0"
}
}
Binary file modified src/assets/Social-Icons/Twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Contact-section/ContactText.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import Github from "../../assets/Social-Icons/Github.png";
import Insta from "../../assets/Social-Icons/instagram.png";
import twitter from "../../assets/Social-Icons/twitter.png";
import Twitter from "../../assets/Social-Icons/Twitter.png";

export const ContactText = () => {
return (
Expand All @@ -27,7 +27,7 @@ export const ContactText = () => {
className="flex gap-x-12 lg:justify-center justify-start"
>
<a href="https://twitter.com/gauravsingh1281">
<img src={twitter} alt="Twitter-logo" className="h-8" />
<img src={Twitter} alt="Twitter-logo" className="h-8" />
</a>
<a href="https://github.com/gauravsingh1281">
<img src={Github} alt="Github-logo" className="h-8" />
Expand Down
1 change: 0 additions & 1 deletion src/components/Footer-section/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const Footer = () => {
<h3 className="text-xl font-semibold">Contact Us</h3>
<div className="flex space-x-3 pt-2">
<a href="https://twitter.com/gauravsingh1281">

<FaTwitter className="w-8 h-8 hover:shadow-2xl hover:scale-110 transition duration-300 ease-in-out" />
</a>
<a href="https://github.com/gauravsingh1281">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default function Login() {
<div className="">
<button
type="submit"
className=" border-2 border-green rounded-lg h-10 bg-primaryGreen w-full py-1.5 rounded-xl focus:shadow-md hover:bg-primaryGreen/80 text-textWhite font-semibold "
className="border-2 border-green rounded-lg h-10 bg-primaryGreen w-full py-1.5 rounded-xl focus:shadow-md hover:bg-primaryGreen/80 text-textWhite font-semibold mt-2"
>
Log In
</button>
Expand Down
12 changes: 6 additions & 6 deletions src/pages/Registration.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function Registration() {
return (
<article className="flex flex-col justify-center h-screen bg-primaryGreen/10 overflow-hidden">
<Navbar />
<section className="flex flex-row justify-center items-center mt">
<section className="flex flex-row justify-center items-center">
<div className="hidden w-full lg:flex lg:mt-12 flex-col justify-center xl:justify-center xl:h-full ">
<div className="mb-10 mx-10 mr-auto">
<h2 className=" text-3xl font-bold text-gray-dark/90 ">
Expand All @@ -41,7 +41,7 @@ export default function Registration() {
<TitleCard />
<form
onSubmit={handleSubmit}
className="mt-5 space-y-4 w-[70%] md:w-[50%] lg:w-[60%]"
className="mt-5 space-y-4 w-[70%] md:w-[50%] lg:w-[60%]"
>
<input
title="Name"
Expand All @@ -53,32 +53,32 @@ export default function Registration() {
className="input-bar"
/>
<input
className="input-bar"
title="Email address"
name="email"
value={form.email}
type="email"
placeholder="E-mail Address"
onChange={handlechange}
className="input-bar"
/>
<input
className="input-bar"
title="Password"
name="password"
value={form.password}
type="password"
placeholder="Password"
onChange={handlechange}
className="input-bar"
/>
<input
className="input-bar"
title="Confirm password"
name="confirm_password"
type="password"
placeholder="Confirm Password"
value={form.confirm_password}
onChange={handlechange}
/>
className="input-bar"
/>

<div className="">
<button
Expand Down
Loading

0 comments on commit 0223cc0

Please sign in to comment.