diff --git a/apps/gui/public/logo.png b/apps/gui/public/logo.png new file mode 100644 index 0000000..95098ee Binary files /dev/null and b/apps/gui/public/logo.png differ diff --git a/apps/gui/src/app/builder/page.tsx b/apps/gui/src/app/builder/page.tsx new file mode 100644 index 0000000..41f29f9 --- /dev/null +++ b/apps/gui/src/app/builder/page.tsx @@ -0,0 +1,14 @@ +"use client"; + +export default function BuilderPage() { + return ( +
+

Scenario Builder

+
+

+ Scenario builder interface coming soon... +

+
+
+ ); +} diff --git a/apps/gui/src/app/globals.css b/apps/gui/src/app/globals.css index 63280ea..4521d47 100644 --- a/apps/gui/src/app/globals.css +++ b/apps/gui/src/app/globals.css @@ -64,7 +64,7 @@ :root { --radius: 0; - --background: #fff8f5; + --background: #f4e9dc; --foreground: #201a16; --card: #fcf3e8; --card-foreground: #201a16; @@ -96,7 +96,7 @@ } .dark { - --background: #201a16; + --background: #181310; --foreground: #fff8f5; --card: #362f2a; --card-foreground: #fff8f5; diff --git a/apps/gui/src/app/layout.tsx b/apps/gui/src/app/layout.tsx index 1c79fac..46decfc 100644 --- a/apps/gui/src/app/layout.tsx +++ b/apps/gui/src/app/layout.tsx @@ -34,7 +34,6 @@ const spaceMono = Space_Mono({ const links = [ { href: "/", label: "Home" }, - { href: "/play", label: "Play" }, { href: "/config", label: "Config" }, ]; @@ -45,21 +44,26 @@ export default function RootLayout({ children }: { children: ReactNode }) {