File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import About from './components/About/About'
77import Campus from './components/Campus/Campus'
88import Testimonials from './components/Testimonials/Testimonials'
99import Contact from './components/Contact/Contact'
10+ import Footer from './components/Footer/Footer'
1011
1112const 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 )
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments