Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Manavsheth78 committed Feb 9, 2023
2 parents 2c2b98b + 3be346b commit 2655a64
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
Binary file modified public/assests/Events/innovative.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 modified public/assests/Events/sharks.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/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ const App = () => {
<NavBar/>
<Home/>
<About />
<Event />
{/* <Event /> */}
{/* <Team /> */}
{/* <Sponsor /> */}
<Signup/>
{/* <Signup/> */}
<Glimpse />
<Footer />
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/Cart/cart.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

11 changes: 11 additions & 0 deletions src/components/Events/Event.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@
/* height: fit-content; */
filter: drop-shadow(5px 5px 10px rgba(172, 112, 255, 0.33));
}
.Events{
background: url('../../assets/bgprakarsh.png');
height: fit-content;
/* width: 100vw; */
/* overflow: hidden; */
/* background-size: contain; */
background-repeat: no-repeat;
/* position: relative; */
/* min-width: 2000px; */
z-index:0;
}
.bg{
margin: 15px;

Expand Down
10 changes: 6 additions & 4 deletions src/components/Events/Event.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react'
import './Event.css'
import { EventCard } from './EventCard'
import { Row, Col } from "react-bootstrap";
import bg from '../../assets/bgprakarsh.png';

function Event() {
const event = [
Expand Down Expand Up @@ -61,7 +62,9 @@ function Event() {
},
];
return(
<section className="Events container" id="event">

<section className="container" id="event">

<div className="heading head mx-auto d-flex align-items-center justify-content-center">
<h2
className="abouthead "
Expand All @@ -73,7 +76,7 @@ function Event() {
Events
</h2>
<h2 className="front-text mx-auto">Events</h2>
</div>
</div>
<Row>

{event.map((members) => (
Expand All @@ -89,8 +92,7 @@ function Event() {
</Col>
))}
</Row>



</section>
);

Expand Down

0 comments on commit 2655a64

Please sign in to comment.