diff --git a/apps/landing/src/app/(frontend)/page.tsx b/apps/landing/src/app/(frontend)/page.tsx index 9a5a0ad..8818b6d 100644 --- a/apps/landing/src/app/(frontend)/page.tsx +++ b/apps/landing/src/app/(frontend)/page.tsx @@ -1,6 +1,6 @@ -import { getGlobalsCommunitiesSection } from '../../repositories/get-globals-communitues-section'; -import { getGlobalsFeaturesSection } from '../../repositories/get-globals-features-section'; -import { getGlobalsHeroSection } from '../../repositories/get-globals-hero-section'; +import { getGlobalsCommunitiesSection } from '../../services/get-globals-communitues-section'; +import { getGlobalsFeaturesSection } from '../../services/get-globals-features-section'; +import { getGlobalsHeroSection } from '../../services/get-globals-hero-section'; import { CallToAction } from './_components/call-to-action'; import { Community } from './_components/community'; import { Features } from './_components/features'; diff --git a/apps/landing/src/repositories/get-globals-communitues-section.ts b/apps/landing/src/services/get-globals-communitues-section.ts similarity index 100% rename from apps/landing/src/repositories/get-globals-communitues-section.ts rename to apps/landing/src/services/get-globals-communitues-section.ts diff --git a/apps/landing/src/repositories/get-globals-features-section.ts b/apps/landing/src/services/get-globals-features-section.ts similarity index 100% rename from apps/landing/src/repositories/get-globals-features-section.ts rename to apps/landing/src/services/get-globals-features-section.ts diff --git a/apps/landing/src/repositories/get-globals-hero-section.ts b/apps/landing/src/services/get-globals-hero-section.ts similarity index 100% rename from apps/landing/src/repositories/get-globals-hero-section.ts rename to apps/landing/src/services/get-globals-hero-section.ts