diff --git a/src/pages/compare.astro b/src/pages/compare.astro
index c2ea750..2422708 100644
--- a/src/pages/compare.astro
+++ b/src/pages/compare.astro
@@ -7,7 +7,8 @@ import { featuresTableData } from "../data/compare-table";
import { Button } from "../components/buttons/Button/Button";
import OrganizationJSONLD from "../scripts/OrganizationJSONLD.astro";
-const title = "defguard enterprise open-source SSO&VPN with 2FA/MFA: Comparison of WireGuard VPN solutions";
+const title =
+ "defguard enterprise open-source SSO&VPN with 2FA/MFA: Comparison of WireGuard VPN solutions";
const featuredImage =
"github.com/DefGuard/defguard.github.io/raw/main/public/images/png/defguard.png";
const imageWidth = "1080";
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 0aff9fa..656cbaa 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -9,8 +9,8 @@ import ProductImage from "../components/product/ProductImage.astro";
import ProductLayout from "../layouts/ProductLayout.astro";
import ProductSection from "../layouts/ProductSection.astro";
import MatrixSection from "../components/MatrixSection.astro";
-import { Image } from 'astro:assets';
-import CoreImage from '/public/images/product/core/hero-image.png';
+import { Image } from "astro:assets";
+import CoreImage from "/public/images/product/core/hero-image.png";
const coreFeatures = (await getCollection("core-features")).sort(
(f1, f2) => f1.data.order - f2.data.order,
@@ -83,7 +83,11 @@ const tags = [
-
+
diff --git a/src/pages/openvpn.astro b/src/pages/openvpn.astro
index 98e3f2e..5f41db9 100644
--- a/src/pages/openvpn.astro
+++ b/src/pages/openvpn.astro
@@ -13,7 +13,8 @@ import MigrateIllustration from "/public/svg/migrate-illustration.svg?raw";
const openvpnFeatures = (await getCollection("openvpn-features")).sort(
(f1, f2) => f1.data.order - f2.data.order,
);
-const title = "defguard enterprise open-source SSO&VPN with 2FA/MFA: Migrate from OpenVPN to WireGuard";
+const title =
+ "defguard enterprise open-source SSO&VPN with 2FA/MFA: Migrate from OpenVPN to WireGuard";
const featuredImage =
"github.com/DefGuard/defguard.github.io/raw/main/public/images/png/defguard.png";
const imageWidth = "1080";
@@ -94,4 +95,4 @@ const form_title = "Book a demo";
-
\ No newline at end of file
+
diff --git a/src/pages/pricing.astro b/src/pages/pricing.astro
index 82ce7ef..a722fbe 100644
--- a/src/pages/pricing.astro
+++ b/src/pages/pricing.astro
@@ -39,7 +39,8 @@ const tags = [
];
const form_title = "Book a demo";
-const form_description = "We provide consulting or custome deployment and security services. You can order custome features for the server and/or the client. Just fill out the form below:";
+const form_description =
+ "We provide consulting or custome deployment and security services. You can order custome features for the server and/or the client. Just fill out the form below:";
---
-
+
diff --git a/src/scripts/OrganizationJSONLD.astro b/src/scripts/OrganizationJSONLD.astro
index e7019a0..0d039e2 100644
--- a/src/scripts/OrganizationJSONLD.astro
+++ b/src/scripts/OrganizationJSONLD.astro
@@ -1,35 +1,35 @@
---
interface Props {
- title: string;
- description: string;
- url: string;
- tags: string[];
+ title: string;
+ description: string;
+ url: string;
+ tags: string[];
}
-const { title, description, url, tags} = Astro.props;
+const { title, description, url, tags } = Astro.props;
const schema = {
- "@context": "https://schema.org",
- "@type": "Organization",
- "headline": title,
- "description": description,
- "url": url,
- "keywords": tags,
- "author": {
- "@type": "Person",
- "name": "Robert Olejnik",
- },
- "address": {
- "@type": "PostalAddress",
- "streetAddress": "Cyfrowa 6",
- "city": "Szczecin",
- "postalCode": "71-441",
- "country": "Poland"
- },
- "contantPoint": {
- "@type": "ContactPoint",
- "email": "sales@defguard.net",
- },
- "operatingSystem": "Windows, macOS, Linux",
+ "@context": "https://schema.org",
+ "@type": "Organization",
+ headline: title,
+ description: description,
+ url: url,
+ keywords: tags,
+ author: {
+ "@type": "Person",
+ name: "Robert Olejnik",
+ },
+ address: {
+ "@type": "PostalAddress",
+ streetAddress: "Cyfrowa 6",
+ city: "Szczecin",
+ postalCode: "71-441",
+ country: "Poland",
+ },
+ contantPoint: {
+ "@type": "ContactPoint",
+ email: "sales@defguard.net",
+ },
+ operatingSystem: "Windows, macOS, Linux",
};
---
diff --git a/src/styles/fonts/_font.scss b/src/styles/fonts/_font.scss
index cc03607..0cd8ca9 100644
--- a/src/styles/fonts/_font.scss
+++ b/src/styles/fonts/_font.scss
@@ -1,8 +1,9 @@
@font-face {
- font-family: "Poppins";
- font-style: normal;
- font-weight: 400;
- src: local('Poppins'),
- url("/fonts/poppins/Poppins-Regular.woff2") format("woff2");
- font-display: swap;
-}
\ No newline at end of file
+ font-family: "Poppins";
+ font-style: normal;
+ font-weight: 400;
+ src:
+ local("Poppins"),
+ url("/fonts/poppins/Poppins-Regular.woff2") format("woff2");
+ font-display: swap;
+}