2025-09-17 18:43:43 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
2025-12-10 16:08:34 +09:00
|
|
|
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";
|
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
|
|
|
import { JapanPostModule } from "@bff/integrations/japanpost/japanpost.module.js";
|
2025-09-17 18:43:43 +09:00
|
|
|
|
|
|
|
|
@Module({
|
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
|
|
|
imports: [WhmcsModule, SalesforceModule, FreebitModule, JapanPostModule],
|
2025-09-17 18:43:43 +09:00
|
|
|
providers: [],
|
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
|
|
|
exports: [WhmcsModule, SalesforceModule, FreebitModule, JapanPostModule],
|
2025-09-17 18:43:43 +09:00
|
|
|
})
|
|
|
|
|
export class IntegrationsModule {}
|