@@ -11,25 +11,28 @@ export default function Footer(): JSX.Element {
1111 const [ date , setDate ] = useState ( '' ) ;
1212
1313 useEffect ( ( ) => {
14- fetch ( '/last-updated.txt' )
15- . then ( res => res . text ( ) )
16- . then ( text => setDate ( text ) ) ;
14+ fetch ( '/last-updated.txt' )
15+ . then ( res => res . text ( ) )
16+ . then ( text => setDate ( text ) ) ;
1717 } , [ ] ) ;
1818 return (
19- < footer className = 'flex fd-column justify-content-cen text-align-center footer ' >
19+ < footer className = 'flex justify-content-cen text-align-center align-items-cen ' >
2020 { /* <h2 className='footer-title'>Laner Documentation</h2>
2121 <p className='footer-subtitle'>A comprehensive guide to using Laner</p> */ }
2222 { /* <p>Made with ❤️ using <Link to='https://react.dev/'>React</Link> and <Link to='https://vitejs.dev/'>Vite</Link></p> */ }
2323 { /* <p>Documentation hosted on <Link to='https://vercel.com/'>Vercel</Link></p> */ }
24+ < div className = "flex fd-column gap-10" >
25+ < p > Thoroughly Tested and supported by < Link to = 'https://github.com/Fector101/laner' > Laner</ Link > </ p >
26+ < p > Last Updated: { date } , © 2023 Fector101</ p >
27+ </ div >
2428
25- < p > Thoroughly Tested and supported by < Link to = 'https://github.com/Fector101/laner' > Laner</ Link > </ p >
2629 < div className = 'support-links-box flex fd-column justify-content-cen text-align-center' >
27- < p > Find this project helpful?</ p >
28- < p > consider buying me a < Link to = 'https://www.buymeacoffee.com/fector101' className = "buy-me-a-coffee" > Coffee ☕️</ Link > </ p >
29- < p > Or a star on 🌟 < Link to = 'https://github.com/Fector101/android_notify' > GitHub.</ Link > </ p >
30- < p > Your support helps maintain and improve the project.</ p >
30+ < p > Find this project helpful?</ p >
31+ < p > consider buying me a < Link to = 'https://www.buymeacoffee.com/fector101' className = "buy-me-a-coffee" > Coffee ☕️</ Link > </ p >
32+ < p > Or a star on 🌟 < Link to = 'https://github.com/Fector101/android_notify' > GitHub.</ Link > </ p >
33+ < p > Your support helps maintain and improve the project.</ p >
3134 </ div >
32- < p > Last Updated: { date } , © 2023 Fector101 </ p >
35+
3336 </ footer >
3437 )
3538}
0 commit comments