mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
export default function Head() {
|
|
return (
|
|
<>
|
|
<title>LearnHouse</title>
|
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</>
|
|
)
|
|
}
|