From 42fa72a315a49324b265901d2c84d22ab746ea3e Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Fri, 26 May 2023 20:49:17 +0100 Subject: [PATCH] Getting search looking decent --- src/app/components/search/SubmitButton.tsx | 19 +++++++++ src/app/search/page.tsx | 45 +++++++++++++--------- 2 files changed, 46 insertions(+), 18 deletions(-) create mode 100644 src/app/components/search/SubmitButton.tsx diff --git a/src/app/components/search/SubmitButton.tsx b/src/app/components/search/SubmitButton.tsx new file mode 100644 index 0000000..a64541c --- /dev/null +++ b/src/app/components/search/SubmitButton.tsx @@ -0,0 +1,19 @@ +interface SubmitButtonProps { + buttonDisabled: boolean; + redirectFunc: () => void; +} + +const SubmitButton = ({ buttonDisabled, redirectFunc }: SubmitButtonProps) => { + return ( + + ); +}; + +export default SubmitButton; diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx index eb95d9a..47f5666 100644 --- a/src/app/search/page.tsx +++ b/src/app/search/page.tsx @@ -39,24 +39,33 @@ export default function Search() { }; return ( -
-
- - - - +
+
+
+ We'll search for the most recent data about your property, so we can + begin to build a profile of the works that can be done and the impact + that will have +
+
+ +
+ +
+ + +
); }