added subpages for helloworld and clash, added game contract to config.json for usage in frontend

This commit is contained in:
averel10
2025-11-14 22:49:06 +01:00
parent d3b512aa95
commit 15bf0155bb
8 changed files with 678 additions and 275 deletions

View File

@@ -0,0 +1,11 @@
"use client";
export default function Clash() {
return (
<div>
<h1>Clash Page</h1>
<p>This is the Clash page content.</p>
</div>
);
}