Skip to content

Commit 721a0b7

Browse files
authored
Merge pull request #27 from NepTechTribe/shreesha
Footer Completed
2 parents e39375c + ffcb52d commit 721a0b7

File tree

5 files changed

+76
-21
lines changed

5 files changed

+76
-21
lines changed

src/Components/landingpage/Navbar.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ const Navbar = () => {
2323
<img src={fullogo} alt="NepTech Tribe Logo" className="Navbar-logo" />
2424
<ul className="Navbar-menu">
2525
<li><Link to="/" className='link-default' >Home</Link></li>
26-
<li><Link to="/gallary" className='link-default' >Gallery</Link></li>
27-
<li><Link to="/about" className='link-default'>About Us</Link> </li>
28-
<li><Link to="/events" className='link-default'> Upcoming Events</Link></li>
26+
<li><Link to="/about" className='link-default' >About Us</Link></li>
27+
<li><Link to="/blog" className='link-default'>Blogs</Link> </li>
28+
<li><Link to="/events" className='link-default'> Events</Link></li>
2929
<li><Link to="/contact" className='link-default' >Contact Us</Link></li>
3030
</ul>
3131
</div>

src/Components/landingpage/footer.jsx

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Footer() {
2020
return (
2121
<div className="Footer">
2222
<Container>
23-
<Row style={{ justifyItems: "center" }}>
23+
<Row style={{ justifyItems: "center" , paddingTop:'2rem', paddingBottom:'2rem'}}>
2424
<Col md={3}>
2525
<img
2626
src={fullogo}
@@ -50,30 +50,37 @@ function Footer() {
5050
</button>
5151
</div>
5252
</Col>
53-
<Col md={3}>
53+
<Col md={3} className="Footer-col2">
5454
<dl>
55-
<dt>Explore </dt>
56-
<dd>About Us</dd>
57-
<dd>Our Team</dd>
58-
<dd>Blog</dd>
59-
<dd>FAQ</dd>
55+
<dt className="Footer-col2__head">Explore </dt>
56+
<dd className="Footer-col2__data">About Us</dd>
57+
<dd className="Footer-col2__data">Our Team</dd>
58+
<dd className="Footer-col2__data">Blogs</dd>
59+
<dd className="Footer-col2__data">FAQ</dd>
6060
</dl>
6161
</Col>
62-
<Col md={3}>
62+
<Col md={3} className="Footer-col2">
6363
<dl>
64-
<dt> Services</dt>
65-
<dd>Events</dd>
66-
<dd>Hackathons</dd>
67-
<dd>Bootcamps</dd>
64+
<dt className="Footer-col2__head"> Services</dt>
65+
<dd className="Footer-col2__data">Events</dd>
66+
<dd className="Footer-col2__data">Hackathons</dd>
67+
<dd className="Footer-col2__data">Bootcamps</dd>
6868
</dl>
6969
</Col>
70-
<Col md={3}>
70+
<Col md={3} className="Footer-col2">
7171
<dl>
72-
<dt>Contact</dt>
73-
<dd>982155325</dd>
72+
<dt className="Footer-col2__head">Resources</dt>
73+
<dd className="Footer-col2__data">Bsc CSIT</dd>
74+
<dd className="Footer-col2__data">BCA</dd>
75+
<dd className="Footer-col2__data">BIM</dd>
76+
<dd className="Footer-col2__data">BIT</dd>
7477
</dl>
7578
</Col>
7679
</Row>
80+
<hr />
81+
<Row className="Footer-copyright" >
82+
<p>Copyright 2024 NepTech Tribe All Rights Reserved.</p>
83+
</Row>
7784
</Container>
7885
</div>
7986
);

src/Styles/App.css

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@
462462
.Footer {
463463
background-color: #e0e0f2;
464464
margin-top: 4rem;
465-
padding: 4rem 0rem;
465+
padding: 2rem 0rem;
466466
}
467467
.Footer-col1__introduction {
468468
font-family: "Poppins", sans-serif;
@@ -488,4 +488,28 @@
488488
opacity: 0.7;
489489
height: 1.5rem;
490490
width: 1.55rem;
491+
}
492+
.Footer-col2 {
493+
display: flex;
494+
justify-content: center;
495+
font-family: "Poppins", sans-serif;
496+
padding-top: 1.5rem;
497+
}
498+
.Footer-col2__head {
499+
font-size: 1.125rem;
500+
font-weight: 600;
501+
margin-bottom: 0.5rem;
502+
}
503+
.Footer-col2__data {
504+
font-size: 0.9375rem;
505+
}
506+
.Footer-col2__data:hover {
507+
text-decoration: underline;
508+
color: #000080;
509+
}
510+
.Footer-copyright {
511+
font-family: "Poppins", sans-serif;
512+
font-size: 0.9375rem;
513+
text-align: center;
514+
padding-top: 2rem;
491515
}/*# 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/_Footer.scss

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.Footer{
22
background-color: #e0e0f2;
33
margin-top: 4rem;
4-
padding: 4rem 0rem;
4+
padding: 2rem 0rem;
55
&-col1{
66
&__introduction{
77
font-family: $font;
@@ -32,4 +32,28 @@
3232
}
3333
}
3434
}
35+
&-col2{
36+
display: flex;
37+
justify-content: center;
38+
font-family: $font;
39+
padding-top: 1.5rem;
40+
&__head{
41+
font-size: 1.125rem;
42+
font-weight: 600;
43+
margin-bottom: 0.5rem;
44+
}
45+
&__data{
46+
font-size: 0.9375rem;
47+
&:hover{
48+
text-decoration: underline;
49+
color: #000080;
50+
}
51+
}
52+
}
53+
&-copyright{
54+
font-family: $font;
55+
font-size: 0.9375rem;
56+
text-align: center;
57+
padding-top: 2rem;
58+
}
3559
}

0 commit comments

Comments
 (0)