Skip to content

Commit

Permalink
[Updated] Footer (#66)
Browse files Browse the repository at this point in the history
* Contact info updated (#63)

* contact updated

* minor changes

* new sponsors added (#62)

* updated matches page (#59)

* updated footer (#64)

---------

Co-authored-by: AnkitPathak05 <[email protected]>
Co-authored-by: Saksham Agrawal <[email protected]>
Co-authored-by: ROHIT KUMAR <[email protected]>
  • Loading branch information
4 people authored Sep 21, 2024
1 parent 4107d66 commit 35566d2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ function App() {
element={
<Suspense fallback={<Spinner />}>
<HomePage />
<Footer />
</Suspense>
}
/>
Expand Down Expand Up @@ -195,6 +196,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<Espardha />
<Footer />
</Suspense>
}
/>
Expand All @@ -203,6 +205,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<Events />
<Footer />
</Suspense>
}
/>
Expand All @@ -227,6 +230,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<Matches />
<Footer />
</Suspense>
}
/>
Expand All @@ -243,6 +247,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<Sponsors />
<Footer />
</Suspense>
}
/>
Expand All @@ -267,6 +272,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<Footer1 />
<Footer />
</Suspense>
}
/>
Expand All @@ -277,6 +283,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<Admin />
<Footer />
</Suspense>
}
/>
Expand Down Expand Up @@ -311,6 +318,7 @@ function App() {
element={
<Suspense fallback={<Preloader />}>
<DashBoard />
<Footer />
</Suspense>
}
>
Expand Down Expand Up @@ -365,7 +373,7 @@ function App() {
/>
</Route>
</Routes>
<Footer />

</>
);
}
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/components/LandingPages/About/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import takeback from './takeback24.png'
import Greencounter from '../GreenCounter/Greencounter';
import Carousel from '../Home/Carousel/Carouselhp';
import Gallery from '../Gallery/Gallery'
import Footer from '../Footer/footer';
const About = () => {
return (
<>
Expand Down Expand Up @@ -178,6 +179,8 @@ const About = () => {
</div>
</section>
</div>
<div style={{height:'30px'}}></div>
<Footer/>
</>
);
};
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/components/LandingPages/Register/Register.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { useEffect } from 'react';
import { Outlet, useNavigate } from 'react-router';
import styles from './Register.module.css';
import Carousel from '../Home/Carousel/Carouselhp';
import Footer from '../Footer/footer';

function Register() {
const navigate = useNavigate();
Expand All @@ -18,6 +19,8 @@ function Register() {
<Outlet />
</div>
</div>
<div style={{height:'30px'}}></div>
<Footer/>
</div>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
padding: 5em 0 0 0;
position: relative;
}

.bg{
position: fixed;
}
.card {
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 35566d2

Please sign in to comment.