Skip to content
Snippets Groups Projects
Select Git revision
  • f6279b074be462f3659267dbf0914a525a3ba87e
  • master default protected
  • 51-docker
  • 40-return-match-when-edit-salamander
  • 36-email-verification
  • 23-add-object-detection
  • 22-run-branch
7 results

sex_identification.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Footer.js 389 B
    // Footer.js
    import React from 'react';
    import { Link } from 'react-router-dom';
    import '../css/Footer.css'
    
    function Footer() {
        return (
            <footer>
                <p>© 2024 ElectroMart, Inc.</p>
                <Link to="">About Us</Link>
                <Link to="">Terms of Service</Link>
                <Link to="">Privacy Policy</Link>
            </footer>
        );
    }
    
    export default Footer;