site title at the top of the layout; more verbose "welcome" page

This commit is contained in:
Avraham Sakal
2025-08-31 20:32:25 -04:00
parent 8845f78810
commit d0902e9df1
2 changed files with 13 additions and 8 deletions
+11 -7
View File
@@ -1,11 +1,15 @@
import { Container, Stack, Title } from "@mantine/core";
export default function Page() {
return (
<>
<h1
css={{ fontWeight: "700", fontSize: "1.875rem", paddingBottom: "1rem" }}
>
Token-Efficient Context Engineering
</h1>
</>
<Stack align="center">
<Title>Welcome</Title>
<Container>
This web app is a proof-of-concept for token-efficient context
engineering. The premise is that upon every turn of a chat, the backend
generates a running summary of the conversation based on the previous
running summary and the new messages.
</Container>
</Stack>
);
}