feat/generator: start working in the web page. Add data caching

This commit is contained in:
Kentai Radiquum 2025-02-20 20:15:56 +05:00
parent 1020dc8ae8
commit 383abce65d
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
7 changed files with 165 additions and 25 deletions

View file

@ -10,11 +10,21 @@ export default function Base({ children, isDev }: BaseProps) {
<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>
{children}
</body>
<body className="bg-[#121B2C] text-white">{children}</body>
</html>
);
}