From 44e055febfff2e0de916b4731f9dd8921a01295b Mon Sep 17 00:00:00 2001 From: Jordan Acosta Date: Tue, 18 Jun 2024 23:02:26 -0700 Subject: [PATCH] feat: layout and styles --- app/[installer-slug]/page.tsx | 18 +- app/layout.tsx | 2 +- components/AWSInstallerFormFields.tsx | 2 +- components/AzureInstallerFormFields.tsx | 2 +- components/Card.tsx | 2 +- components/InputFields.tsx | 2 +- .../{ => InstallStepper}/InstallStatus.tsx | 8 +- .../index.tsx} | 164 +++++++++++----- components/StepOneAWS.tsx | 179 +++++++++--------- theme.ts | 2 +- theme.ts.example | 2 +- 11 files changed, 220 insertions(+), 163 deletions(-) rename components/{ => InstallStepper}/InstallStatus.tsx (87%) rename components/{InstallStepper.tsx => InstallStepper/index.tsx} (60%) diff --git a/app/[installer-slug]/page.tsx b/app/[installer-slug]/page.tsx index 93cd26c..538e1d4 100644 --- a/app/[installer-slug]/page.tsx +++ b/app/[installer-slug]/page.tsx @@ -19,26 +19,24 @@ export default async function Installer({ params, searchParams }) { return ( <> -
-
- +
+
+ {"< Other installation options"} -
- -
{installer?.metadata?.name}
-

- {app?.description} -

+
+

{app.name}

+

{app?.description}

+
diff --git a/app/layout.tsx b/app/layout.tsx index c0d62c5..49a5d06 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -58,7 +58,7 @@ export default async function RootLayout({ lang="en" > -
+
{children}