HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode.com/src/components/blocks/trading-platform/Branded.svelte
<script lang="ts">
  import { t } from '$lib/translations';

</script>

<div class="block-branded">
  <div class="container">
    <div class="block-branded__wrapper">
      <p class="block-branded__text">
        {$t('trading-platform.Build your own branded brokerage with our fully customizable white-label trading platform. Stand out on the market, choosing the color scheme, iconography, typography, and brand identity you want.')}
      </p>
    </div>
  </div>
</div>

<style lang="scss">
  @import 'src/scss/variables';
  @import 'src/scss/media';
  @import 'src/scss/mixins';

  .block-branded {
    background: $blueLight;
    padding: 210px 0;

    @include breakpoint-down('deskL') {
      padding: 177px 0;
    }

    @include breakpoint-down('deskS') {
      padding: 95px 0;
    }

    @include breakpoint-down('tabM') {
      padding: 198px 0;
    }

    &__wrapper {
      position: relative;
      z-index: 1;
    }

    &__text {
      color: $techWhite;
      text-align: center;
      width: 100%;
      max-width: 680px;
      margin-inline: auto;

      @include breakpoint-down('deskS') {
        max-width: 530px;
      }
    }
  }
</style>