From f7746bbca20d2ea7c255c7b685c8cd433319561e Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Tue, 1 Oct 2024 13:41:49 -0400 Subject: [PATCH] strip of the boilerplate (#221) --- agent/agent-ui/src/app/globals.css | 2 +- agent/agent-ui/src/app/layout.js | 4 +- agent/agent-ui/src/app/page.js | 98 +----------------------------- 3 files changed, 5 insertions(+), 99 deletions(-) diff --git a/agent/agent-ui/src/app/globals.css b/agent/agent-ui/src/app/globals.css index 13d40b89..d720b552 100644 --- a/agent/agent-ui/src/app/globals.css +++ b/agent/agent-ui/src/app/globals.css @@ -7,7 +7,7 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { +@media (prefers-color-scheme: light) { :root { --background: #0a0a0a; --foreground: #ededed; diff --git a/agent/agent-ui/src/app/layout.js b/agent/agent-ui/src/app/layout.js index 9800bf8d..0854a423 100644 --- a/agent/agent-ui/src/app/layout.js +++ b/agent/agent-ui/src/app/layout.js @@ -13,8 +13,8 @@ const geistMono = localFont({ }); export const metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "zrok Agent", + description: "zrok Agent Console", }; export default function RootLayout({ children }) { diff --git a/agent/agent-ui/src/app/page.js b/agent/agent-ui/src/app/page.js index 8d4eb100..a7d22b30 100644 --- a/agent/agent-ui/src/app/page.js +++ b/agent/agent-ui/src/app/page.js @@ -1,101 +1,7 @@ -import Image from "next/image"; - export default function Home() { return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.js - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- +
+

Agent

); }