site title at the top of the layout; more verbose "welcome" page
parent
8845f78810
commit
d0902e9df1
@ -1,11 +1,15 @@
|
|||||||
|
import { Container, Stack, Title } from "@mantine/core";
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return (
|
return (
|
||||||
<>
|
<Stack align="center">
|
||||||
<h1
|
<Title>Welcome</Title>
|
||||||
css={{ fontWeight: "700", fontSize: "1.875rem", paddingBottom: "1rem" }}
|
<Container>
|
||||||
>
|
This web app is a proof-of-concept for token-efficient context
|
||||||
Token-Efficient Context Engineering
|
engineering. The premise is that upon every turn of a chat, the backend
|
||||||
</h1>
|
generates a running summary of the conversation based on the previous
|
||||||
</>
|
running summary and the new messages.
|
||||||
|
</Container>
|
||||||
|
</Stack>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue