|
| 1 | +--- |
| 2 | +import Navigation from "../components/base/Navigation.astro"; |
| 3 | +import BaseLayout from "../layouts/BaseLayout.astro"; |
| 4 | +import ProductSection from "../layouts/ProductSection.astro"; |
| 5 | +import FlexibleSection from "../components/FlexibleSection.astro"; |
| 6 | +import BookEvaluationLicenseForm from "../components/form/BookDemoForm/BookEvaluationLicenseForm"; |
| 7 | +import OrganizationJSONLD from "../scripts/OrganizationJSONLD.astro"; |
| 8 | +
|
| 9 | +const title = "Request Evaluation License - defguard Enterprise VPN"; |
| 10 | +const featuredImage = |
| 11 | + "github.com/DefGuard/defguard.github.io/raw/main/public/images/png/defguard.png"; |
| 12 | +const imageWidth = "1080"; |
| 13 | +const imageHeight = "540"; |
| 14 | +const description = "Request a 14-day free evaluation license for defguard enterprise VPN with full WireGuard® MFA/2FA and SSO integration capabilities."; |
| 15 | +const url = "https://defguard.net/evaluation-license/"; |
| 16 | +const tags = [ |
| 17 | + "defguard", |
| 18 | + "evaluation", |
| 19 | + "trial", |
| 20 | + "free trial", |
| 21 | + "WireGuard®", |
| 22 | + "enterprise vpn", |
| 23 | + "mfa/2fa", |
| 24 | + "sso", |
| 25 | + "proof of concept", |
| 26 | + "license", |
| 27 | +]; |
| 28 | +--- |
| 29 | + |
| 30 | +<BaseLayout |
| 31 | + title={title} |
| 32 | + description={description} |
| 33 | + featuredImage={featuredImage} |
| 34 | + imageWidth={imageWidth} |
| 35 | + imageHeight={imageHeight} |
| 36 | + url={url} |
| 37 | +> |
| 38 | + <OrganizationJSONLD |
| 39 | + slot="schema" |
| 40 | + title={title} |
| 41 | + description={description} |
| 42 | + url={url} |
| 43 | + tags={tags} |
| 44 | + /> |
| 45 | + <Navigation activeSlug="/evaluation-license/" /> |
| 46 | + <main id="evaluation-license-page"> |
| 47 | + <ProductSection padding="none"> |
| 48 | + <FlexibleSection |
| 49 | + title="Defguard Trial" |
| 50 | + titleTag="h1" |
| 51 | + id="evaluation-license" |
| 52 | + variant="white" |
| 53 | + theme="light" |
| 54 | + > |
| 55 | + <div slot="left"> |
| 56 | + <h2>🚀 Try Before You Buy</h2> |
| 57 | + <p> |
| 58 | + If you're looking to evaluate Defguard for your specific infrastructure, compliance requirements, and deployment scale, we're happy to provide a 14-day free of charge evaluation license. |
| 59 | + </p> |
| 60 | + |
| 61 | + <h2>✨ What You'll Get</h2> |
| 62 | + <ul> |
| 63 | + <li>🔓 Full access to all enterprise features for 14 days</li> |
| 64 | + <li>💬 Technical support with Defguard during your trial period</li> |
| 65 | + </ul> |
| 66 | + |
| 67 | + <h2>📝 How to Apply</h2> |
| 68 | + <p> |
| 69 | + For convenience, please provide your company information (name, address and Tax Identification Number) in the form. |
| 70 | + </p> |
| 71 | + |
| 72 | + <h2>📧 What Happens Next</h2> |
| 73 | + <p> |
| 74 | + After we review your request, we'll send you a license via email you've provided. |
| 75 | + </p> |
| 76 | + </div> |
| 77 | + <div slot="right"> |
| 78 | + <BookEvaluationLicenseForm submit_text="Request Evaluation License" client:load /> |
| 79 | + </div> |
| 80 | + </FlexibleSection> |
| 81 | + </ProductSection> |
| 82 | + </main> |
| 83 | +</BaseLayout> |
| 84 | + |
| 85 | +<style lang="scss" is:global> |
| 86 | + #evaluation-license-page { |
| 87 | + .product-section { |
| 88 | + padding-top: 0 !important; |
| 89 | + padding-bottom: 4rem !important; |
| 90 | + } |
| 91 | + |
| 92 | + h2 { |
| 93 | + font-size: 1.25rem; |
| 94 | + font-weight: 600; |
| 95 | + margin-top: 1.5rem; |
| 96 | + margin-bottom: 0.75rem; |
| 97 | + color: var(--text-body-primary); |
| 98 | + |
| 99 | + &:first-child { |
| 100 | + margin-top: 0; |
| 101 | + } |
| 102 | + } |
| 103 | + |
| 104 | + ul { |
| 105 | + margin: 0.5rem 0 1rem; |
| 106 | + padding-left: 1.5rem; |
| 107 | + |
| 108 | + li { |
| 109 | + margin-bottom: 0.5rem; |
| 110 | + line-height: 1.6; |
| 111 | + } |
| 112 | + } |
| 113 | + |
| 114 | + p { |
| 115 | + margin-bottom: 1rem; |
| 116 | + line-height: 1.6; |
| 117 | + |
| 118 | + strong { |
| 119 | + font-weight: 600; |
| 120 | + } |
| 121 | + } |
| 122 | + } |
| 123 | +</style> |
| 124 | + |
0 commit comments