Overview
TheFooter component provides a simple footer with copyright information. It’s a stateless component that appears at the bottom of every page.
Usage
Props
TheFooter component does not accept any props. It displays static copyright text.
Component Structure
Features
Copyright Notice
Displays the copyright symbol, year (2025), and company name with standard legal text in Spanish.Semantic HTML
Uses the<footer> semantic HTML element for better accessibility and SEO.
Typography
Wraps the copyright text in a<small> element, which is semantically appropriate for fine print and legal information.
Styling
The Footer component relies on global CSS styles applied to the<footer> element. No component-specific styles or CSS modules are used.
Integration
Layout Pattern
Typically used with the Header component to create a consistent layout:App-level Implementation
Customization
To customize the footer text, you would need to modify the component directly:Source Code
Location:src/components/Footer/Footer.jsx:1
Related Components
Header
Companion header component
Components Overview
View all available components
Best Practices
- Place at the bottom - The Footer should be rendered at the bottom of your application layout
- Use once - Only include one Footer component per page
- Pair with Header - Use together with the Header component for consistency
- Sticky footer - Consider using CSS to make the footer stick to the bottom of the viewport on short pages
Accessibility
- Uses semantic
<footer>element for better screen reader support - Uses
<small>element to indicate fine print content - Automatically understood as landmark region by assistive technologies