mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-28 17:09:43 +05:00
feat/generator: start working in the web page. Add data caching
This commit is contained in:
parent
1020dc8ae8
commit
383abce65d
7 changed files with 165 additions and 25 deletions
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue