add fresh project

This commit is contained in:
2025-10-25 21:17:18 +02:00
parent 887ca6aa23
commit 08a11b81df
23 changed files with 1880 additions and 12 deletions
+16
View File
@@ -0,0 +1,16 @@
import { define } from "../utils.ts";
export default define.page(function App({ Component }) {
return (
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fresh-project</title>
</head>
<body>
<Component />
</body>
</html>
);
});