add random image loading on index page

This commit is contained in:
Kentai Radiquum 2025-01-30 02:18:51 +05:00
parent 0c3130e95f
commit 4d4b346ea2
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 218 additions and 68 deletions

View file

@ -34,7 +34,6 @@ export default function head(props: {
) : (
""
)}
{/* <script src="./static/functions.js"></script> */}
</head>
);
}

View file

@ -24,7 +24,13 @@ export default function Index(props: {
/>
<body className="dark:bg-[#160606] text-[#f9ebeb]">
<Header path={props.path}/>
nothing yet . . .
<div className="container mx-auto">
<div>
<p>Images</p>
<div id="index_images" className="flex flex-wrap gap-4"></div>
</div>
</div>
<script src="./static/populate_index.js"></script>
</body>
</html>
);