Skip to content

Commit b893676

Browse files
committed
cta
1 parent 5936c5e commit b893676

1 file changed

Lines changed: 23 additions & 3 deletions

File tree

index.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ title: ""
105105

106106
<section class="w-full max-w-7xl mx-auto px-6 mt-10 md:mt-16 lg:mt-20 mb-24 md:mb-40 lg:mb-52">
107107
<div class="text-center max-w-3xl mx-auto">
108-
<h2 class="font-bold text-3xl sm:text-4xl text-zinc-100 leading-tight">Dotenv. 10x Better.</h2>
108+
<h2 class="font-bold text-3xl sm:text-4xl text-zinc-100 leading-tight">More Features. 10x Better.</h2>
109109
<p class="mt-4 text-zinc-400 text-lg">Protect secrets in source code and AI prompts with an upgrade that takes seconds.</p>
110110
</div>
111111

@@ -252,7 +252,7 @@ title: ""
252252

253253
<section class="w-full max-w-5xl mx-auto px-6 mt-10 md:mt-16 lg:mt-20 mb-24 md:mb-40 lg:mb-52">
254254
<div class="text-center max-w-3xl mx-auto">
255-
<h2 class="font-bold text-3xl sm:text-4xl text-zinc-100 leading-tight">Developers are replacing dotenv with dotenvx.</h2>
255+
<h2 class="font-bold text-3xl sm:text-4xl text-zinc-100 leading-tight">Developers are talking about dotenvx.</h2>
256256
<p class="mt-4 text-zinc-400 text-lg">Installed almost 3 million times a week on <a href="https://www.npmjs.com/package/@dotenvx/dotenvx" target="_blank" rel="noopener noreferrer" class="text-[#ecd53f] hover:text-[#f7e87a] no-underline hover:no-underline">npm</a>.</p>
257257
</div>
258258

@@ -433,7 +433,7 @@ title: ""
433433
-->
434434

435435
<section class="w-full max-w-2xl mx-auto px-6 mt-20 flex flex-col gap-4">
436-
<h2 class="font-bold text-xl sm:text-2xl text-zinc-950 dark:text-zinc-50">Have questions?</h2>
436+
<h2 class="font-bold text-xl sm:text-2xl text-zinc-950 dark:text-zinc-50">FAQ</h2>
437437
<dl class="divide-y divide-zinc-200 dark:divide-zinc-800">
438438
{% include v1/components/faq-question.html question="How does encryption work?" answer='Dotenvx uses Elliptic Curve Integrated Encryption Scheme (ECIES) to encrypt each secret with a unique ephemeral key, while ensuring it can be decrypted using a long-term private key.<br/><br/>When you initialize encryption, a DOTENV_PUBLIC_KEY (encryption key) and DOTENV_PRIVATE_KEY (decryption key) are generated. The DOTENV_PUBLIC_KEY is used to encrypt secrets, and the DOTENV_PRIVATE_KEY is securely stored in your cloud secrets manager or .env.keys file.<br/><br/>Your encrypted .env file is then safely committed to code. Even if the file is exposed, secrets remain protected since decryption requires the separate DOTENV_PRIVATE_KEY, which is never stored alongside it. Read <a href="/dotenvx.pdf">the whitepaper</a> for more details.' %}
439439
{% include v1/components/faq-question.html question="Is it safe to commit an encrypted .env file to code?" answer='Yes. Dotenvx encrypts secrets using AES-256 with ephemeral keys, ensuring that even if the encrypted .env file is exposed, its contents remain secure. The encryption keys themselves are protected using Secp256k1 elliptic curve cryptography, which is widely used for secure key exchange in technologies like Bitcoin.<br/><br/>This means that every secret in the .env file is encrypted with a unique AES-256 key, and that key is further encrypted using a public key (Secp256k1). Even if an attacker obtains the encrypted .env file, they would still need the corresponding private key—stored separately—to decrypt anything.<br/><br/>Breaking this encryption would require brute-forcing both AES-256 and elliptic curve cryptography, which is computationally infeasible with current technology. Read <a href="/dotenvx.pdf">the whitepaper</a> for more details.' %}
@@ -471,3 +471,23 @@ title: ""
471471
</div>
472472
</dl>
473473
</section>
474+
475+
<section class="w-full max-w-6xl mx-auto px-6 mt-14 md:mt-20 mb-12 md:mb-20 text-center">
476+
<h3 class="hero-title-shaded font-canela font-normal tracking-[-0.018em] text-[2.5rem] md:text-[3.4rem] lg:text-[4.2rem] leading-[1.03]">
477+
Secure Dotenv.<br />Available today.
478+
</h3>
479+
<div class="mt-8 flex items-center justify-center gap-6">
480+
<a class="btn-primary inline-flex items-center gap-1.5" href="/docs/quickstart">
481+
<span>Get Started</span>
482+
<svg fill="none" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
483+
<path d="M10.75 8.75L14.25 12L10.75 15.25" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
484+
</svg>
485+
</a>
486+
<a class="inline-flex items-center justify-center gap-1.5 p-3 font-extrabold tracking-tight no-underline hover:no-underline text-zinc-500 dark:text-zinc-300/90 hover:text-zinc-700 dark:hover:text-zinc-100 transition-colors duration-200" href="mailto:support@dotenvx.com">
487+
<span>Contact Us</span>
488+
<svg fill="none" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
489+
<path d="M10.75 8.75L14.25 12L10.75 15.25" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
490+
</svg>
491+
</a>
492+
</div>
493+
</section>

0 commit comments

Comments
 (0)