Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .docker/nginx/app.conf → .docker/nginx/default.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 80;
index index.php;
index index.html;
root /var/www/html;

location ~ \.(ico|css|js|gif|jpe?g|png|woff2?|ttf|otf|svg|eot)$ {
Expand All @@ -9,19 +9,11 @@ server {
access_log off;
}

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}

location / {
try_files $uri $uri/index.html;
gzip_static on;
}

error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
}
}
10 changes: 5 additions & 5 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
return '<li>' . implode('</li><li>', $list) . '</li>';
},
'prices' => [
'Basic' => [
'price' => '$ 600/mo',
'description' => 'STARTING FROM',
'Custom Quote' => [
'price' => 'Contact us for pricing',
'description' => 'TAILORED PRICING',
'isActive' => false,
'list' => <<<LIST
- Until 5 accounts
- Storage until 1Gb
- Pricing tailored to your operation
- Deployment and support scope defined together
LIST,
],
'Business' => [
Expand Down
152 changes: 150 additions & 2 deletions lang/cs/main.json

Large diffs are not rendered by default.

20 changes: 14 additions & 6 deletions lang/en/main.json

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions lang/fr/main.json

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions lang/nb-NO/main.json

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions lang/pt-BR/main.json

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions lang/ta/main.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions source/_assets/scss/_pricing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,15 @@
width: 55px;
height: 55px;
z-index: 1;
pointer-events: none;
}

&.first-item::after {
background: var(--primary-color);
left: -2px;
bottom: -2px;
border-radius: 0px 55px 0px 8px;
box-shadow: 2px -2px 0 0 #d4deff;
}

&.last-item::after {
Expand Down
17,624 changes: 17,624 additions & 0 deletions source/assets/compiled/css/ud-styles.css

Large diffs are not rendered by default.

831 changes: 831 additions & 0 deletions source/assets/compiled/js/main.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions source/assets/compiled/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"/js/main.js": "/js/main.js?id=2e3b59dc5908a7ac8ce00cc4969a92db",
"/css/ud-styles.css": "/css/ud-styles.css?id=7c118ce2bfd3a68fc5afb5877e40b1b0"
}
6 changes: 3 additions & 3 deletions source/pricing.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<section id="pricing" class="ud-pricing">
<div class="container">

<div class="row g-0 align-items-center justify-content-center">
<div class="row g-0 align-items-stretch justify-content-center">
@foreach ($page->prices as $planName => $content)
<div class="col-lg-4 col-md-6 col-sm-10">
<div
class="ud-single-pricing first-item{{ $content->isActive ? ' active' : ''}} wow fadeInUp"
class="ud-single-pricing h-100{{ $loop->first ? ' first-item' : '' }}{{ $loop->last ? ' last-item' : '' }}{{ $content->isActive ? ' active' : ''}} wow fadeInUp"
data-wow-delay=".15s"
>
<div class="ud-pricing-header">
Expand Down Expand Up @@ -65,7 +65,7 @@ class="ud-single-pricing first-item{{ $content->isActive ? ' active' : ''}} wow
<thead>
<tr>
<th style="width: 34%;"></th>
<th style="width: 22%;">{{ $page->t('Basic') }}</th>
<th style="width: 22%;">{{ $page->t('Custom Quote') }}</th>
<th style="width: 22%;">{{ $page->t('Business') }}</th>
</tr>
</thead>
Expand Down
Loading