mirror of
https://github.com/C4illin/ConvertX.git
synced 2026-09-13 02:14:32 +02:00
34 lines
857 B
TypeScript
34 lines
857 B
TypeScript
export const BaseHtml = ({
|
|
children,
|
|
title = "ConvertX",
|
|
}: { children: JSX.Element; title?: string }) => (
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title safe>{title}</title>
|
|
<link rel="stylesheet" href="/pico.lime.min.css" />
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="/apple-touch-icon.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="/favicon-32x32.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="/favicon-16x16.png"
|
|
/>
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
</head>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|