Skip to content

Commit 6726b5b

Browse files
committed
tweaks
1 parent 5711bb6 commit 6726b5b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

website/src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const storage = new Storage({
1818

1919
export default {
2020
async fetch(req: Request) {
21-
console.info("serving", req.url);
2221
const path = new URL(req.url).pathname;
2322
if (path.startsWith(storage.publicPath)) {
2423
const source = await storage.serve(path);
@@ -75,5 +74,6 @@ export default {
7574
);
7675
yield* guideDocs.map((doc) => doc.url);
7776
await storage.write(Path.join(outDir, storage.publicPath));
77+
storage.clear();
7878
},
7979
};

website/src/views/home.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function CallToAction() {
124124
justify-content: center;
125125
align-items: center;
126126
`}>
127-
<div class="blur-background-2 ${css`
127+
<div class="${css`
128128
padding: 2em;
129129
display: flex;
130130
flex-direction: column;
@@ -178,13 +178,13 @@ export default async function Home({context: {storage}}: ViewProps) {
178178
storage=${storage}
179179
>
180180
<${Hero} />
181-
<div class="blur-background-2 ${css`
181+
<div class=${css`
182182
font-size: max(18px, min(24px, 2vw));
183183
background-color: var(--bg-color);
184184
border-top: 1px solid var(--text-color);
185185
border-bottom: 1px solid var(--text-color);
186186
padding: 2em 0;
187-
`}">
187+
`}>
188188
<${Marked} markdown=${md.body} components=${components} />
189189
</div>
190190
<${CallToAction} />

0 commit comments

Comments
 (0)