This commit is contained in:
Chris Wanstrath 2026-02-04 08:51:28 -08:00
parent 11caa8fe19
commit 913f8f34d7
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import { Hype } from '@because/hype' import { Hype } from '@because/hype'
import { define, stylesToCSS } from '@because/forge' import { define, stylesToCSS } from '@because/forge'
import { baseStyles, initScript, theme } from '@because/toes/tools' import { baseStyles, ToolScript, theme } from '@because/toes/tools'
import { readFileSync, writeFileSync, existsSync } from 'fs' import { readFileSync, writeFileSync, existsSync } from 'fs'
import { join } from 'path' import { join } from 'path'
@ -209,7 +209,7 @@ app.get('/', async c => {
<link rel="stylesheet" href="/styles.css" /> <link rel="stylesheet" href="/styles.css" />
</head> </head>
<body> <body>
<script dangerouslySetInnerHTML={{ __html: initScript }} /> <ToolScript />
<Container> <Container>
<Header> <Header>
<Title>TODO</Title> <Title>TODO</Title>
@ -242,7 +242,7 @@ app.get('/', async c => {
<link rel="stylesheet" href="/styles.css" /> <link rel="stylesheet" href="/styles.css" />
</head> </head>
<body> <body>
<script dangerouslySetInnerHTML={{ __html: initScript }} /> <ToolScript />
<Container> <Container>
<Header> <Header>
<div> <div>

View File

@ -1,6 +1,6 @@
{ {
"name": "@because/toes", "name": "@because/toes",
"version": "0.0.4", "version": "0.0.5",
"description": "personal web appliance - turn it on and forget about the cloud", "description": "personal web appliance - turn it on and forget about the cloud",
"module": "src/index.ts", "module": "src/index.ts",
"type": "module", "type": "module",