From 5810cc112b5253fad328a99a80954e536815efca Mon Sep 17 00:00:00 2001 From: James Wyndham Date: Thu, 29 Feb 2024 17:57:50 +0800 Subject: [PATCH] feature - added whatsnew --- Frontend/app/(public)/blogs/[slug]/page.tsx | 2 +- Frontend/app/(public)/pricing/page.tsx | 1 + Frontend/app/(public)/whatsnew/page.tsx | 32 ++ Frontend/components/Footer.tsx | 243 ++++++++++++- Frontend/components/Header.tsx | 2 +- Frontend/components/{Icon => Icons}/Icon.tsx | 0 .../{Icon => Icons}/IconContainer.tsx | 0 Frontend/components/{Icon => Icons}/types.ts | 0 Frontend/components/Logo.tsx | 24 +- Frontend/components/Modals/ModalSignIn.tsx | 2 +- Frontend/components/Modals/ModalSignUp.tsx | 2 +- Frontend/components/Navigation.tsx | 14 +- Frontend/components/PriceCard.tsx | 2 +- Frontend/components/Utilities/Background.tsx | 2 +- .../sections/FAQ/RightAlignedBorderBottom.tsx | 342 ++++++++++++++++++ .../VerticalTabsWithOverlappingBackground.tsx | 257 +++++++++++++ Frontend/sections/FeaturesBlocks.tsx | 258 ------------- .../Hero/WaitingListWithImageHero.tsx | 2 +- .../IconsSections/SolidBackgrondIcon.tsx | 116 ++++++ Frontend/sections/LoadingModal.tsx | 27 -- Frontend/sections/PageIllustration.tsx | 18 - Frontend/sections/SuccessModal.tsx | 16 - Frontend/tailwind.config.ts | 2 +- 23 files changed, 999 insertions(+), 365 deletions(-) create mode 100644 Frontend/app/(public)/whatsnew/page.tsx rename Frontend/components/{Icon => Icons}/Icon.tsx (100%) rename Frontend/components/{Icon => Icons}/IconContainer.tsx (100%) rename Frontend/components/{Icon => Icons}/types.ts (100%) create mode 100644 Frontend/sections/FAQ/RightAlignedBorderBottom.tsx create mode 100644 Frontend/sections/Features/VerticalTabsWithOverlappingBackground.tsx delete mode 100644 Frontend/sections/FeaturesBlocks.tsx create mode 100644 Frontend/sections/IconsSections/SolidBackgrondIcon.tsx delete mode 100644 Frontend/sections/LoadingModal.tsx delete mode 100644 Frontend/sections/PageIllustration.tsx delete mode 100644 Frontend/sections/SuccessModal.tsx diff --git a/Frontend/app/(public)/blogs/[slug]/page.tsx b/Frontend/app/(public)/blogs/[slug]/page.tsx index 1e63e58..6d740ca 100644 --- a/Frontend/app/(public)/blogs/[slug]/page.tsx +++ b/Frontend/app/(public)/blogs/[slug]/page.tsx @@ -51,7 +51,7 @@ const PostPage = async (props: any) => { className="h-full flex-grow flex flex-col bg-base-100 max-w-screen" > -
+
diff --git a/Frontend/app/(public)/pricing/page.tsx b/Frontend/app/(public)/pricing/page.tsx index ca13440..fe89671 100644 --- a/Frontend/app/(public)/pricing/page.tsx +++ b/Frontend/app/(public)/pricing/page.tsx @@ -30,6 +30,7 @@ export default function PricingPage() { +