mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 09:01:17 +00:00
* Restore foundry onboarding stack * Consolidate foundry rename * Create foundry tasks without prompts * Rename Foundry handoffs to tasks
22 lines
631 B
HTML
22 lines
631 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--
|
|
<script src="https://unpkg.com/react-scan/dist/auto.global.js" crossorigin="anonymous"></script>
|
|
<script type="module">
|
|
if (import.meta.env.DEV) {
|
|
import("react-grab");
|
|
import("@react-grab/mcp/client");
|
|
}
|
|
</script>
|
|
-->
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Foundry</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|