- 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.
13 lines
576 B
TypeScript
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 {}
|