From d0902e9df1d2d4eff594a6d7f96ce3d1dc33002c Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Sun, 31 Aug 2025 20:32:25 -0400 Subject: [PATCH] site title at the top of the layout; more verbose "welcome" page --- layouts/LayoutDefault.tsx | 3 ++- pages/index/+Page.tsx | 18 +++++++++++------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/layouts/LayoutDefault.tsx b/layouts/LayoutDefault.tsx index a47b759..cb5b84b 100644 --- a/layouts/LayoutDefault.tsx +++ b/layouts/LayoutDefault.tsx @@ -7,6 +7,7 @@ import { Image, MantineProvider, NavLink, + Title, } from "@mantine/core"; import { IconHome2, @@ -21,7 +22,6 @@ import { import { useDisclosure } from "@mantine/hooks"; import theme from "./theme.js"; import logoUrl from "../assets/logo.png"; -import { useStore } from "../state.js"; import { useState } from "react"; import { TRPCProvider, useTRPC } from "../trpc/client.js"; import { usePageContext } from "vike-react/usePageContext"; @@ -120,6 +120,7 @@ export default function LayoutDefault({ {" "} {" "} + Token-Efficient Context Engineering diff --git a/pages/index/+Page.tsx b/pages/index/+Page.tsx index 5309735..29ec8e8 100644 --- a/pages/index/+Page.tsx +++ b/pages/index/+Page.tsx @@ -1,11 +1,15 @@ +import { Container, Stack, Title } from "@mantine/core"; + export default function Page() { return ( - <> -

- Token-Efficient Context Engineering -

- + + Welcome + + 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. + + ); }