Assist_Design/apps/bff/src/integrations/integrations.module.ts
barsa dc32e7aa07 feat: Enhance Public VPN Plans view with marketing content and new components
- Added detailed service highlights, how it works steps, and FAQs to the Public VPN Plans view.
- Introduced new components: CtaButton, FeaturedServiceCard, ProcessStep, ServiceCard, ServiceShowcaseCard, TrustBadge, TrustIndicators, HowItWorks, ServiceCTA, and ServiceFAQ for improved layout and functionality.
- Implemented a new design for the landing page with enhanced visuals and user engagement elements.
- Updated the VPN plans section to include a more informative and visually appealing layout.
2026-01-13 18:19:58 +09:00

13 lines
576 B
TypeScript

import { Module } from "@nestjs/common";
import { WhmcsModule } from "@bff/integrations/whmcs/whmcs.module.js";
import { SalesforceModule } from "@bff/integrations/salesforce/salesforce.module.js";
import { FreebitModule } from "@bff/integrations/freebit/freebit.module.js";
import { JapanPostModule } from "@bff/integrations/japanpost/japanpost.module.js";
@Module({
imports: [WhmcsModule, SalesforceModule, FreebitModule, JapanPostModule],
providers: [],
exports: [WhmcsModule, SalesforceModule, FreebitModule, JapanPostModule],
})
export class IntegrationsModule {}