Skip to content

Commit 4accde2

Browse files
committed
Footer content added
1 parent 3904a06 commit 4accde2

File tree

8 files changed

+83
-6
lines changed

8 files changed

+83
-6
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
import { Container, Row, Col } from "react-bootstrap";
2+
import fullogo from "../../assets/LandingPage/logo.png";
3+
4+
function Footer() {
5+
return (
6+
<div className="Footer">
7+
<Container>
8+
<Row style={{ justifyItems: "center" }}>
9+
<Col md={3}>
10+
<img
11+
src={fullogo}
12+
alt="NepTech Tribe Logo"
13+
className="Navbar-logo"
14+
/>
15+
<p className="Footer-introduction">
16+
{" "}
17+
NepTech Tribe is a non-profit organization that unites tech
18+
enthusiasts of all ages to share knowledge and foster innovation.
19+
We offer events and activities to enhance skills and encourage
20+
collaboration, aiming to drive technological progress and create a
21+
supportive community.
22+
</p>
23+
</Col>
24+
<Col md={3}>
25+
<dl>
26+
<dt>Explore </dt>
27+
<dd>About Us</dd>
28+
<dd>Our Team</dd>
29+
<dd>Blog</dd>
30+
<dd>FAQ</dd>
31+
</dl>
32+
</Col>
33+
<Col md={3}>
34+
<dl>
35+
<dt> Services</dt>
36+
<dd>Events</dd>
37+
<dd>Hackathons</dd>
38+
<dd>Bootcamps</dd>
39+
</dl>
40+
</Col>
41+
<Col md={3}>
42+
<dl>
43+
<dt>Contact</dt>
44+
<dd>982155325</dd>
45+
</dl>
46+
</Col>
47+
</Row>
48+
</Container>
49+
</div>
50+
);
51+
}
52+
53+
export default Footer;

src/Pages/Landingpage.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import PastEvent from "../Components/landingpage/pastevent";
77
import Partners from "../Components/landingpage/partners";
88
import Testimonials from "../Components/landingpage/Testimonials";
99
import Contact from "../Components/landingpage/feedback";
10+
import Footer from "../Components/landingpage/footer";
1011

1112
function LandingPage(){
1213
return(
@@ -20,6 +21,7 @@ function LandingPage(){
2021
<Partners/>
2122
<Testimonials/>
2223
<Contact/>
24+
<Footer/>
2325
</>
2426
)
2527
}

src/Styles/App.css

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
.Title-head {
112112
font-size: 2.5rem;
113113
color: black;
114-
font-family: "Lato", sans-serif;
114+
font-family: "Poppins", sans-serif;
115115
font-weight: 500;
116116
text-transform: capitalize;
117117
}
@@ -315,7 +315,7 @@
315315
}
316316
.ContactForm {
317317
font-family: "Poppins", sans-serif;
318-
color: #fefefe;
318+
color: white;
319319
margin-top: 5rem;
320320
position: relative;
321321
}
@@ -458,4 +458,14 @@
458458
height: 2rem;
459459
width: 2rem;
460460
}
461+
}
462+
.Footer {
463+
background-color: #e0e0f2;
464+
margin-top: 4rem;
465+
padding: 4rem 0rem;
466+
}
467+
.Footer-introduction {
468+
font-family: "Poppins", sans-serif;
469+
font-size: 0.8rem;
470+
margin-top: 2rem;
461471
}/*# sourceMappingURL=App.css.map */

src/Styles/App.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Styles/LandingPage/_Contact.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.ContactForm {
22
font-family: $font;
3-
color: #fefefe;
3+
color: white;
44
margin-top: 5rem;
55
position: relative;
66
&-form {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.Footer{
2+
background-color: #e0e0f2;
3+
margin-top: 4rem;
4+
padding: 4rem 0rem;
5+
&-introduction{
6+
font-family: $font;
7+
font-size: 0.8rem;
8+
margin-top: 2rem;
9+
10+
}
11+
}

src/Styles/LandingPage/_Index.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
@import 'Announcement';
99
@import 'Partners';
1010
@import 'Testimonials';
11-
@import 'Contact';
11+
@import 'Contact';
12+
@import 'Footer';

src/Styles/LandingPage/_Title.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
&-head{
1111
font-size: 2.5rem;
1212
color: black;
13-
font-family: $lato;
13+
font-family: $font;
1414
font-weight: 500;
1515
text-transform: capitalize;
1616
}

0 commit comments

Comments
 (0)