Skip to content

Commit

Permalink
Added Core Team Pics, Implemented Barrel Exports (#18)
Browse files Browse the repository at this point in the history
* Added Core Team Pics, Implemented Barrel Exports

* Added Core Team Pics, Implemented Barrel Exports

* Added Core Team Pics, Implemented Barrel Exports

* Restored Contact image
  • Loading branch information
TheCodeVenturer authored Oct 28, 2023
1 parent 4fb2e30 commit e1afbfc
Show file tree
Hide file tree
Showing 24 changed files with 118 additions and 216 deletions.
317 changes: 108 additions & 209 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import ContactUs from "./components/contact/ContactUs";
import Footer from "./components/footer/Footer";
import Team from "./components/team/Team";
import Navbar from "./components/NavBar/NavBar";
import {Navbar,Team,ContactUs,Footer} from "./components";


function App() {
return (
Expand Down
Binary file added src/assets/2023 Core Team Pic/Aditya Shaw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Anirban Sinha.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Bhumi Sinha.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Bikash Agawala.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Gourav Rajak.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Jayanta Pandit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/MD AMIR KHAN.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Moulina Pandey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Niraj Modi.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Rajdip Sinha.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Riya Kumari.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/Rounak Kayal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/2023 Core Team Pic/contactus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/dp.png
Binary file not shown.
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import contactus from "../../assets/contactus.png";
import contactus from "../assets/contactus.png";
export default function ContactUs() {
return (
<div>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Logo from '../../Assests/gdsc-logo.png'
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: 6 additions & 1 deletion src/components/index.js
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
// export * from "./Navbar"
import Navbar from './NavBar'
import Team from './team/Team'
import ContactUs from './ContactUs'
import Footer from './Footer'

export { Navbar, Team, ContactUs, Footer }

0 comments on commit e1afbfc

Please sign in to comment.