Skip to content

Commit

Permalink
event
Browse files Browse the repository at this point in the history
  • Loading branch information
VadhwanaParth15 committed Feb 9, 2023
1 parent f923623 commit e3f04cf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const App = () => {
<Event />
{/* <Team /> */}
{/* <Sponsor /> */}
<Signup/>
{/* <Signup/> */}
<Glimpse />
<Footer />
</div>
Expand Down
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 e3f04cf

Please sign in to comment.