From 97ac3f08bec070203b0afddb0e907e6d6d4a62fe Mon Sep 17 00:00:00 2001 From: DanielWTE Date: Thu, 22 Jun 2023 21:22:35 +0200 Subject: [PATCH 1/3] minimal updates --- app/not-found.tsx | 2 +- app/page.tsx | 37 ++- package-lock.json | 684 ++++++++++++++++++++++++++-------------------- package.json | 2 +- 4 files changed, 400 insertions(+), 325 deletions(-) diff --git a/app/not-found.tsx b/app/not-found.tsx index 5e0e81a..81614ba 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -9,7 +9,7 @@ const NotFound = () => { const router = useRouter(); const handleGoBack = () => { - router.back(); + router.push('/'); }; return ( diff --git a/app/page.tsx b/app/page.tsx index 6c518e2..d8ee9d3 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,31 +1,28 @@ -import Welcomer from '@/components/welcomer' -import Services from '@/components/services' -import WhySolun from '@/components/whySolun' -import Testimonials from '@/components/testimonials' -import CTABanner from '@/components/CTABanner' import Header from '@/components/header' import Footer from '@/components/footer' +import Welcomer from '@/components/welcomer'; +import Services from '@/components/services'; +import WhySolun from '@/components/whySolun'; +import CTABanner from '@/components/CTABanner'; + export default function Home() { return ( <>
-
- -
-
- -
-
- -
-
- {/* */} -
-
- -
+
+ +
+
+ +
+
+ +
+
+ +