Skip to content

Commit

Permalink
Contact us button added
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdips834 committed Oct 28, 2023
1 parent 19fd403 commit 9d6bfbb
Show file tree
Hide file tree
Showing 24 changed files with 16 additions and 113 deletions.
7 changes: 0 additions & 7 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
<<<<<<< HEAD
import { Navbar, Team, ContactUs, Footer } from "./components";

=======
import Navbar from "./components/NavBar/NavBar";
import Footer from "./components/footer/Footer";
import Team from "./components/team/Team";
import ContactUs from "./components/contact/ContactUs";
>>>>>>> team/initial-design
function App() {
return (
<div>
Expand Down
File renamed without changes
File renamed without changes
38 changes: 0 additions & 38 deletions src/components/ContactUs.jsx

This file was deleted.

56 changes: 0 additions & 56 deletions src/components/Footer.jsx

This file was deleted.

7 changes: 1 addition & 6 deletions src/components/NavBar.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<<<<<<< HEAD:src/components/NavBar.jsx
import React from 'react'
import Logo from '../assets/gdsc-logo.png'
=======
import React from "react";
import Logo from "../../assets/gdsc-logo.png";
>>>>>>> team/initial-design:src/components/NavBar/NavBar.jsx
import Logo from "../assets/gdsc-logo.png";
const Navbar = () => {
return (
<div className="w-[100%] flex justify-center items-center py-6 relative">
Expand Down
7 changes: 7 additions & 0 deletions src/components/contact/ContactUs.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import contactus from "../../assets/contactus.png";
export default function ContactUs() {
const contactUsHandler = (e) => {};
return (
<div className="flex flex-col p-10 pt-[10rem] pb-[10rem] justify-evenly md:flex-row">
<img src={contactus} className="max-w-full" alt="Contact Us" />
Expand Down Expand Up @@ -29,6 +30,12 @@ export default function ContactUs() {
name="Message"
placeholder="Message"
></textarea>
<input
className="bg-blue-700 w-[13.6875rem] h-[3.75rem] m-4 rounded-3xl text-white text-[1.375] "
type="submit"
value="Submit"
onClick={contactUsHandler}
/>
</form>
</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions src/components/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Navbar from './NavBar'
import Team from './team/Team'
import ContactUs from './ContactUs'
import Footer from './Footer'
import Navbar from "./NavBar";
import Team from "./team/Team";
import ContactUs from "./contact/ContactUs";
import Footer from "./footer/Footer";

export { Navbar, Team, ContactUs, Footer }
export { Navbar, Team, ContactUs, Footer };
1 change: 1 addition & 0 deletions src/components/team/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default function Card({
twitter,
colour,
}) {
console.log(image);
console.log(colour);
const className = `flex flex-col m-6 justify-center gap-2 items-center shadow-[0px_0px_15px_2px_rgba(0,0,0,0.17)] border-b-8 border-b-[${colour}] border-solid
w-[18rem] h-[22rem] shrink-0`;
Expand Down
3 changes: 2 additions & 1 deletion src/data/data2023.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@
"githubUrl": "http://github.com/rajdips834",
"twitterUrl": "https://x.com/rajdips834?t=K0E58jxs0sleVQUDzLAvjw&s=09",
"websiteUrl": "",
"roleType": 3
"roleType": 3,
"image":"../../assets/coreTeamPictures/rajdipSinha.png"
},
{
"name": "Shivam kumar shaw",
Expand Down

0 comments on commit 9d6bfbb

Please sign in to comment.