2026-02-02 20:34:35 +00:00
|
|
|
/**
|
|
|
|
|
* Footer Component
|
|
|
|
|
* Site footer with links and info
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import styles from './Footer.module.css';
|
|
|
|
|
|
|
|
|
|
export function Footer() {
|
|
|
|
|
const currentYear = new Date().getFullYear();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<footer className={styles.footer}>
|
|
|
|
|
<div className={styles.container}>
|
|
|
|
|
<div className={styles.content}>
|
|
|
|
|
<div className={styles.section}>
|
|
|
|
|
<h3 className={styles.title}>SchoolCompare</h3>
|
|
|
|
|
<p className={styles.description}>
|
2026-03-25 13:03:04 +00:00
|
|
|
Compare primary schools across England.
|
2026-02-02 20:34:35 +00:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className={styles.section}>
|
|
|
|
|
<h4 className={styles.sectionTitle}>Resources</h4>
|
|
|
|
|
<ul className={styles.links}>
|
|
|
|
|
<li>
|
|
|
|
|
<a
|
|
|
|
|
href="https://www.gov.uk/government/organisations/department-for-education"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
className={styles.link}
|
|
|
|
|
>
|
|
|
|
|
Department for Education
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a
|
|
|
|
|
href="https://www.gov.uk/school-performance-tables"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
className={styles.link}
|
|
|
|
|
>
|
|
|
|
|
School Performance Tables
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className={styles.bottom}>
|
|
|
|
|
<p className={styles.copyright}>
|
2026-02-03 10:11:23 +00:00
|
|
|
© {currentYear} SchoolCompare.co.uk
|
2026-02-02 20:34:35 +00:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
|
|
|
|
}
|