mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
15 lines
No EOL
419 B
TypeScript
15 lines
No EOL
419 B
TypeScript
import { createStitches } from '@stitches/react';
|
|
|
|
export const { getCssText } = createStitches();
|
|
|
|
export default function Head() {
|
|
return (
|
|
<>
|
|
<title>Settings</title>
|
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<style id="stitches" dangerouslySetInnerHTML={{ __html: getCssText() }} />
|
|
</>
|
|
)
|
|
}
|
|
|