Spaces:
Sleeping
Sleeping
File size: 646 Bytes
5bd3663 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /**
* Hero header with gradient title.
*/
import React from "react";
import styles from "./Header.module.css";
export default function Header() {
return (
<header className={styles.hero}>
<h1 className={styles.title}>EduRecommender</h1>
<p className={styles.subtitle}>
Personalised educational content · Embeddings + LLM Re-Ranking
</p>
<div className={styles.guide}>
<span className={styles.guideIcon}>📖</span>
<span>
Select a learner profile and get personalised course recommendations
powered by AI.
</span>
</div>
</header>
);
}
|