Build a Reusable Footer - Build a Reusable Footer

Tell us what’s happening:

I am working on the Footer component project. I have implemented the footer element with three unordered lists, a paragraph containing the copyright symbol, and three links with the href set to #. However, I am still having trouble passing all the tests, specifically the one regarding the footer not having any siblings. I need help checking my code structure.

Your code so far

<!-- file: index.html -->

 
/* file: styles.css */
 
/* file: index.jsx */
import React from 'react';


export default function Footer() {
  return(
    <footer>
      <ul>
          <li>Home</li>
          <li>About</li>
      </ul>

       <ul>
          <li>Services</li>
          <li>Pricing</li>
      </ul>

       <ul>
          <li>Contact</li>
          <li>Support</li>
      </ul>

      <p>
      © 2026 My Website 
      </p>
        

         <a href="#">Facebook</a>
         <a href="#">Twitter</a>
         <a href="#">GitHub</a>

    </footer>  
  );
}

 

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build a Reusable Footer - Build a Reusable Footer

hello @meron welcome to the forum!

The html file is importing the Footer component using import { Footer } from './index.jsx';. So should you use a default export or a named export to export Footer from index.jsx?

You are not using React anywhere, so you should probably remove it.