mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 15:54:31 +00:00
30 lines
950 B
TypeScript
30 lines
950 B
TypeScript
interface BaseProps {
|
|
children: React.ReactNode;
|
|
isDev?: boolean;
|
|
}
|
|
|
|
export default function Base({ children, isDev }: BaseProps) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta charSet="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Radiquum/Photos</title>
|
|
<link rel="stylesheet" href="/static/css/tailwind.css" />
|
|
{isDev ? <script src="/static/js/hotreload.js"></script> : ""}
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link
|
|
rel="preconnect"
|
|
href="https://fonts.gstatic.com"
|
|
crossOrigin="anonymous"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body className="bg-[#121B2C] text-white">{children}</body>
|
|
</html>
|
|
);
|
|
}
|