diff --git a/apps/landing/src/app/(frontend)/(home)/_components/call-to-action.tsx b/apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/call-to-action.tsx
similarity index 100%
rename from apps/landing/src/app/(frontend)/(home)/_components/call-to-action.tsx
rename to apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/call-to-action.tsx
diff --git a/apps/landing/src/app/(frontend)/(home)/_components/community.tsx b/apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/community.tsx
similarity index 100%
rename from apps/landing/src/app/(frontend)/(home)/_components/community.tsx
rename to apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/community.tsx
diff --git a/apps/landing/src/app/(frontend)/(home)/_components/features.tsx b/apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/features.tsx
similarity index 100%
rename from apps/landing/src/app/(frontend)/(home)/_components/features.tsx
rename to apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/features.tsx
diff --git a/apps/landing/src/app/(frontend)/(home)/_components/learning-resources.tsx b/apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/learning-resources.tsx
similarity index 100%
rename from apps/landing/src/app/(frontend)/(home)/_components/learning-resources.tsx
rename to apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/learning-resources.tsx
diff --git a/apps/landing/src/app/(frontend)/(home)/_components/testimonials.tsx b/apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/testimonials.tsx
similarity index 100%
rename from apps/landing/src/app/(frontend)/(home)/_components/testimonials.tsx
rename to apps/landing/src/app/(frontend)/(home)/_components/__depcrecated__/testimonials.tsx
diff --git a/apps/landing/src/app/(frontend)/(home)/page.tsx b/apps/landing/src/app/(frontend)/(home)/page.tsx
index e98d5cc..68d4484 100644
--- a/apps/landing/src/app/(frontend)/(home)/page.tsx
+++ b/apps/landing/src/app/(frontend)/(home)/page.tsx
@@ -1,27 +1,9 @@
-import { getGlobalsCallToActionSection } from '@/services/get-globals-call-to-action-section';
-import { getGlobalsCommunitiesSection } from '@/services/get-globals-communitues-section';
-import { getGlobalsTestimonialsSection } from '@/services/get-globals-testimonials-section';
-import { CallToAction } from './_components/call-to-action';
-import { Community } from './_components/community';
import { Hero } from './_components/hero';
-import { Testimonials } from './_components/testimonials';
-
-export const revalidate = 10; // Seconds
export default async function Page() {
- const [communitiesData, testimonialsData, callToActionData] =
- await Promise.all([
- getGlobalsCommunitiesSection(),
- getGlobalsTestimonialsSection(),
- getGlobalsCallToActionSection(),
- ]);
-
return (
<>
-
-
-
>
);
}