diff --git a/assets/js/app.js b/assets/js/app.js index 2d84d328..85bdf2d6 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -29,3 +29,36 @@ clipboard.on('error', function(e) { console.error('Trigger:', e.trigger); }); /* eslint-enable */ + +// code which reads ?ref=ads-c-* or ?utm_campaign= from entry URL and adds utm_campaign= to all all links on the page +(function() { + var urlParams = new URLSearchParams(window.location.search); + var ref = urlParams.get('ref'); + var utm_campaign = urlParams.get('utm_campaign'); + if (ref || utm_campaign) { + var links = document.querySelectorAll('a'); + links.forEach(function(link) { + var href = link.getAttribute('href'); + if (href) { + if (ref) { + if (href.indexOf('?') === -1) { + href += '?'; + } else { + href += '&'; + } + href += 'utm_campaign=' + ref; + } + if (utm_campaign) { + if (href.indexOf('?') === -1) { + href += '?'; + } else { + href += '&'; + } + href += 'utm_campaign=' + utm_campaign; + } + link.setAttribute('href', href); + } + }); + } +} +)(); \ No newline at end of file diff --git a/assets/scss/common/_global.scss b/assets/scss/common/_global.scss index ee16e3ed..fb48fc9e 100644 --- a/assets/scss/common/_global.scss +++ b/assets/scss/common/_global.scss @@ -204,7 +204,3 @@ body { -webkit-text-fill-color: transparent; -moz-text-fill-color: transparent; } - -.btn { - margin: 8px; -} \ No newline at end of file diff --git a/content/carto/index.md b/content/carto/index.md index 8e59115f..0d14d849 100644 --- a/content/carto/index.md +++ b/content/carto/index.md @@ -8,51 +8,43 @@ type: "html-content"
-

Maps for your Data Team

+

Light alternative to CARTO

-
Dekart is lightweight alternative to CARTO for BigQuery and Snowflake users. You will create maps instantly with SQL without moving data and share your insights with immersive up-to-date maps.
+
Dekart is light and fast map analytics for BigQuery and Snowflake.
Your data team will create up-to-date maps in seconds with SQL without moving data.
-
-

Sign up for free

-

Book a call with a team

+ +
+ +

Watch short demo video

+
+
+ +
+
-{{< landing-image src="berlin-roads.png" caption="Watch 40 seconds demo" >}}
-
+

Why Choose Dekart Over CARTO?

Transparent Pricing

-

Plans start at $49/month – no surprises, no overpaying. Explore our pricing options to find the right fit.

+

Free Personal Plan. Grow plans start at $49/month – no surprises, no overpaying.
👉 Dekart Cloud pricing

No Vendor Lock-In

-

Open-source license, commercial license, SaaS, or self-hosting – Dekart meets any deployment needs.

+

Open-source license, commercial code license, SaaS, or self-hosting – Dekart meets any deployment needs.
👉 Self-hosting options

High-performance Map Visualization

-

Dekart uses the same Kepler.gl and deck.gl libraries as CARTO, delivering stunning, high-performance maps.

+

Dekart uses the same Kepler.gl and deck.gl libraries as CARTO, delivering stunning, high-performance maps.
👉 Live map examples

Faster Data Connectors

Built with contributions from Google and Snowflake experts, Dekart's data connectors use multithreading and multiple caching techniques to fetch data faster and cheaper.

-
-
-

Create Maps in Seconds

-

Watch short demo video

-
-
- -
-
-

Create Free Workspace Start with Example

-

+

Create Free Workspace Book a call

+

Book a call with a team to unlock insider discounts

-
-
-
-

Save your team from slow, expensive maps

-

Book a call with the Dekart team — Unlock insider discounts and learn about our roadmap.

-
diff --git a/layouts/index.html b/layouts/index.html index eae61845..63dc9e69 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -83,7 +83,7 @@

{{ .P