JourneyPoint / journeypoint / frontend / src / Components / footer.js
footer.js
Raw
import React from 'react';

const Footer = () => {
  return (
    <div style={{ minHeight: '10vh', position: 'relative' }}>
      <div style={{ paddingBottom: '60px' }}>
      </div>

      <footer
        className="bg-dark py-1"
        style={{
          position: 'absolute',
          bottom: 0,
          width: '100%',
          backgroundColor: '#343a40',
        }}
      >
        <div className="container text-light text-center">
          <p className="display-5 mb-3">JourneyPoint</p>
          <small className="text-white-50">
            &copy; {new Date().getFullYear()} JourneyPoint. All rights reserved.
          </small>
        </div>
      </footer>
    </div>
  );
};

export default Footer;