Skip to content

Commit 7603b36

Browse files
Footer Components is complete
1 parent 620f1cd commit 7603b36

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

src/App.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import About from './components/About/About'
77
import Campus from './components/Campus/Campus'
88
import Testimonials from './components/Testimonials/Testimonials'
99
import Contact from './components/Contact/Contact'
10+
import Footer from './components/Footer/Footer'
1011

1112
const App = () => {
1213
return (
@@ -23,6 +24,7 @@ const App = () => {
2324
<Testimonials/>
2425
<Title subTitle='Contact Us' title='Get in Touch'/>
2526
<Contact/>
27+
<Footer/>
2628
</div>
2729
</div>
2830
)

src/components/Footer/Footer.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.footer{
2+
margin: 10px auto;
3+
display: flex;
4+
align-items: center;
5+
justify-content: space-between;
6+
border-top: 1px solid #797979;
7+
padding: 15px 0;
8+
}
9+
.footer ul li{
10+
list-style: none;
11+
display:inline-block;
12+
margin: 20px;
13+
}

src/components/Footer/Footer.jsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import React from 'react'
2+
import './Footer.css'
3+
4+
const Footer = () => {
5+
return (
6+
<div className='footer'>
7+
<p>© 2026 Edustiy. All rights reserved.</p>
8+
<ul>
9+
<li>Terms of Services</li>
10+
<li>Privacy Policy</li>
11+
</ul>
12+
</div>
13+
)
14+
}
15+
16+
export default Footer

0 commit comments

Comments
 (0)