diff --git a/app/(app)/layout.tsx b/app/(app)/layout.tsx new file mode 100644 index 0000000..c6e5957 --- /dev/null +++ b/app/(app)/layout.tsx @@ -0,0 +1,16 @@ +import Logo from "../logo.gif"; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + <> +
+ +
+
{children}
+ + ); +} diff --git a/app/(app)/page.tsx b/app/(app)/page.tsx new file mode 100644 index 0000000..818588f --- /dev/null +++ b/app/(app)/page.tsx @@ -0,0 +1,38 @@ +import { Suspense } from "react"; +import { SyntheticChart } from "../_components/synthetic-chart"; +import { Iframe } from "../_components/iframe"; + +export default function Home() { + return ( +
+

Preset Charts

+
+