diff --git a/.editorconfig b/.editorconfig
new file mode 100755
index 0000000..0a6cf5e
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,14 @@
+; https://editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 2
+indent_style = space
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.forestry/front_matter/templates/new-page.yml b/.forestry/front_matter/templates/new-page.yml
new file mode 100644
index 0000000..bd1f4ee
--- /dev/null
+++ b/.forestry/front_matter/templates/new-page.yml
@@ -0,0 +1,26 @@
+---
+label: new-page
+hide_body: false
+fields:
+- type: text
+ name: title
+ label: title
+- type: textarea
+ name: description
+ label: description
+- type: text
+ name: layout
+ label: layout
+- type: text
+ name: url
+ label: url
+- type: field_group
+ name: banner
+ label: banner
+ fields:
+ - type: text
+ name: title
+ label: title
+ - type: textarea
+ name: description
+ label: description
diff --git a/.forestry/settings.yml b/.forestry/settings.yml
new file mode 100755
index 0000000..e0dc757
--- /dev/null
+++ b/.forestry/settings.yml
@@ -0,0 +1,45 @@
+---
+new_page_extension: md
+auto_deploy: false
+admin_path: ''
+webhook_url:
+sections:
+- type: heading
+ label: All Pages
+- type: directory
+ path: content
+ label: All Pages
+ create: all
+ match: "**/*"
+ templates:
+ - new-page
+- type: heading
+ label: Configuration
+- type: document
+ path: config/_default/config.toml
+ label: Configuration
+- type: document
+ path: config/_default/params.toml
+ label: Parameters
+- type: document
+ path: config.toml
+ label: Variables & Plugins
+- type: document
+ path: config/_default/menus.toml
+ label: Menu
+upload_dir: assets/images
+public_path: "/images"
+front_matter_path: ''
+use_front_matter_path: false
+file_template: ":filename:"
+build:
+ preview_env:
+ - HUGO_ENV=staging
+ - HUGO_VERSION=0.98.0
+ preview_output_directory: public
+ preview_docker_image: forestryio/hugo:latest
+ mount_path: "/srv"
+ working_dir: "/srv"
+ instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk
+ -d public
+version: 0.98.0
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
new file mode 100644
index 0000000..62e2fa2
--- /dev/null
+++ b/.github/workflows/gh-pages.yml
@@ -0,0 +1,39 @@
+name: github pages
+
+on:
+ push:
+ branches:
+ - main # Set a branch that will trigger a deployment
+ pull_request:
+
+jobs:
+ deploy:
+ runs-on: ubuntu-22.04
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ submodules: true # Fetch Hugo themes (true OR recursive)
+ fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
+
+ - name: Hugo setup
+ uses: peaceiris/actions-hugo@v2.6.0
+ with:
+ hugo-version: "0.105.0"
+ extended: true
+
+ - uses: actions/cache@v2
+ with:
+ path: /tmp/hugo_cache
+ key: ${{ runner.os }}-hugomod-${{ hashFiles('**/go.sum') }}
+ restore-keys: |
+ ${{ runner.os }}-hugomod-
+
+ - name: Build
+ run: hugo --minify
+
+ - name: Deploy
+ uses: peaceiris/actions-gh-pages@v3
+ if: github.ref == 'refs/heads/main'
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./public
diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..5de22b3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+Thumbs.db
+.DS_Store
+.dist
+.tmp
+.sass-cache
+npm-debug.log
+node_modules
+builds
+package-lock.json
+public
+resources
+.hugo_build.lock
+jsconfig.json
+hugo_stats.json
+go.sum
\ No newline at end of file
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..6bc8f18
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,3 @@
+{
+ "esversion": 8
+}
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100755
index 0000000..5ed315d
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,10 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+# meta keywords
+keywords: []
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
\ No newline at end of file
diff --git a/assets/images/icons/arrow-white.png b/assets/images/icons/arrow-white.png
new file mode 100644
index 0000000..cbc0f31
Binary files /dev/null and b/assets/images/icons/arrow-white.png differ
diff --git a/assets/images/icons/bishop-chess-piece-grey.png b/assets/images/icons/bishop-chess-piece-grey.png
new file mode 100644
index 0000000..a2ad7d3
Binary files /dev/null and b/assets/images/icons/bishop-chess-piece-grey.png differ
diff --git a/assets/images/icons/bishop-chess-piece-white.png b/assets/images/icons/bishop-chess-piece-white.png
new file mode 100644
index 0000000..33b3255
Binary files /dev/null and b/assets/images/icons/bishop-chess-piece-white.png differ
diff --git a/assets/images/icons/favicon.png b/assets/images/icons/favicon.png
new file mode 100644
index 0000000..1070bec
Binary files /dev/null and b/assets/images/icons/favicon.png differ
diff --git a/assets/images/icons/king-chess-carbon.png b/assets/images/icons/king-chess-carbon.png
new file mode 100644
index 0000000..1c3b7ff
Binary files /dev/null and b/assets/images/icons/king-chess-carbon.png differ
diff --git a/assets/images/icons/king-chess-dark-grey.png b/assets/images/icons/king-chess-dark-grey.png
new file mode 100644
index 0000000..d94ab12
Binary files /dev/null and b/assets/images/icons/king-chess-dark-grey.png differ
diff --git a/assets/images/icons/king-chess-grey.png b/assets/images/icons/king-chess-grey.png
new file mode 100644
index 0000000..f05a106
Binary files /dev/null and b/assets/images/icons/king-chess-grey.png differ
diff --git a/assets/images/icons/king-chess-white.png b/assets/images/icons/king-chess-white.png
new file mode 100644
index 0000000..3f22dd5
Binary files /dev/null and b/assets/images/icons/king-chess-white.png differ
diff --git a/assets/images/icons/knight-black-chess-right-grey.png b/assets/images/icons/knight-black-chess-right-grey.png
new file mode 100644
index 0000000..9bc6eac
Binary files /dev/null and b/assets/images/icons/knight-black-chess-right-grey.png differ
diff --git a/assets/images/icons/knight-black-chess-right-white.png b/assets/images/icons/knight-black-chess-right-white.png
new file mode 100644
index 0000000..229acdb
Binary files /dev/null and b/assets/images/icons/knight-black-chess-right-white.png differ
diff --git a/assets/images/icons/mouse-neon-green.png b/assets/images/icons/mouse-neon-green.png
new file mode 100644
index 0000000..eef8977
Binary files /dev/null and b/assets/images/icons/mouse-neon-green.png differ
diff --git a/assets/images/icons/queen-chess-piece-grey.png b/assets/images/icons/queen-chess-piece-grey.png
new file mode 100644
index 0000000..f01b269
Binary files /dev/null and b/assets/images/icons/queen-chess-piece-grey.png differ
diff --git a/assets/images/icons/queen-chess-piece-white.png b/assets/images/icons/queen-chess-piece-white.png
new file mode 100644
index 0000000..170f0c6
Binary files /dev/null and b/assets/images/icons/queen-chess-piece-white.png differ
diff --git a/assets/images/icons/rook-grey.png b/assets/images/icons/rook-grey.png
new file mode 100644
index 0000000..97d2cc3
Binary files /dev/null and b/assets/images/icons/rook-grey.png differ
diff --git a/assets/images/icons/rook-white.png b/assets/images/icons/rook-white.png
new file mode 100644
index 0000000..38d45ac
Binary files /dev/null and b/assets/images/icons/rook-white.png differ
diff --git a/assets/images/img/dasharo-graph.svg b/assets/images/img/dasharo-graph.svg
new file mode 100644
index 0000000..5b553c3
--- /dev/null
+++ b/assets/images/img/dasharo-graph.svg
@@ -0,0 +1,255 @@
+
diff --git a/assets/images/img/header-bg.jpg b/assets/images/img/header-bg.jpg
new file mode 100644
index 0000000..8b86f1d
Binary files /dev/null and b/assets/images/img/header-bg.jpg differ
diff --git a/assets/images/img/kings-gambit.jpg b/assets/images/img/kings-gambit.jpg
new file mode 100644
index 0000000..e6759c1
Binary files /dev/null and b/assets/images/img/kings-gambit.jpg differ
diff --git a/assets/images/logo/cb-logo.png b/assets/images/logo/cb-logo.png
new file mode 100644
index 0000000..6a52dd3
Binary files /dev/null and b/assets/images/logo/cb-logo.png differ
diff --git a/assets/images/logo/dasharo-header.png b/assets/images/logo/dasharo-header.png
new file mode 100644
index 0000000..a622e26
Binary files /dev/null and b/assets/images/logo/dasharo-header.png differ
diff --git a/assets/images/logo/dasharo-logo.png b/assets/images/logo/dasharo-logo.png
new file mode 100644
index 0000000..e9715cd
Binary files /dev/null and b/assets/images/logo/dasharo-logo.png differ
diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss
new file mode 100755
index 0000000..e69de29
diff --git a/config.toml b/config.toml
new file mode 100755
index 0000000..7c9b3f4
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,55 @@
+# This file is for render site varibles and plugins
+# don't remove this file.
+# The presence of this file is for compatibility with Blogdown and Forestry.
+#
+# The actual configuration files are stored in the `config/_default/` folder.
+
+
+######################### site variables ##############################
+# customize your color and font from here.
+[params.variables]
+white = "#fff"
+black = "#000"
+greenOne = "#99b998"
+greenTwo = "#38d430"
+greenThree = "#849a84"
+salmon = "#fdcea9"
+redOne = "#f4837d"
+redTwo = "#ea495f"
+carbon = "#29363b"
+grey = "#808080"
+darkGrey = "#46494c"
+ultraDarkGrey = "#24272b"
+
+# go to https://fonts.google.com/ to find the font you want to use. select your font and copy only the bold part from the URL. and paste it here.
+# example: "Work+Sans:wght@400;500;600"
+font_primary = "Oswald:wght@200;300;400;500;600;700"
+font_primary_type = "sans-serif" # [serif/sans-serif]
+font_secondary = ""
+font_secondary_type = "" # [serif/sans-serif]
+font_icon = "Font Awesome 6 Free" # https://fontawesome.com/v6.0/icons/
+
+
+############################# Plugins ##############################
+
+# CSS Plugins
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/regular.css"
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/brands.css"
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/solid.css"
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/icons.css"
+
+# JS Plugins
+[[params.plugins.js]]
+link = "plugins/webfont/webfont-loader-2.js"
+[[params.plugins.js]]
+link = "js/cookies.js"
+[[params.plugins.js]]
+link = "js/navigation.js"
+[[params.plugins.js]]
+link = "js/scrollMouseInfo.js"
+[[params.plugins.js]]
+link = "js/smoothScroll.js"
diff --git a/config/_default/config.toml b/config/_default/config.toml
new file mode 100755
index 0000000..7e3857f
--- /dev/null
+++ b/config/_default/config.toml
@@ -0,0 +1,69 @@
+######################## default configuration ####################
+baseURL = "https://tfsojon.github.io/dasharo/"
+title = "Dasharo"
+theme = ["dasharo"]
+# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
+timeZone = "UTC"
+# post pagination
+paginate = "6" # see https://gohugo.io/extras/pagination/
+# post excerpt
+summaryLength = "10" # see https://gohugo.io/content-management/excerpts/
+# google analytics
+googleAnalytics = "" # example: UA-123-45, for more info, read the article https://support.google.com/analytics/answer/1008080?hl=en
+
+############################# Build ##############################
+[build]
+writeStats = false
+
+############################# Outputs ##############################
+[outputs]
+home = ["HTML", "RSS", "JSON", "WebAppManifest"]
+
+############################# Imaging ##############################
+[imaging]
+# See https://github.com/disintegration/imaging
+# Default JPEG or WebP quality setting. Default is 75.
+quality = 90
+
+############################# Caches ###############################
+[caches]
+[caches.images]
+dir = ":resourceDir/_gen"
+maxAge = "720h"
+
+[caches.assets]
+dir = ":resourceDir/_gen"
+maxAge = "720h"
+
+
+############################# Markup ###############################
+[markup]
+[markup.goldmark.renderer]
+unsafe = true
+[markup.goldmark.parser.attribute]
+block = true
+
+[markup.highlight]
+style = 'monokai' # see https://xyproto.github.io/splash/docs/all.html
+
+[markup.tableOfContents]
+startLevel = 2
+endLevel = 5
+ordered = true
+
+
+############################ Media types ############################
+[mediaTypes]
+[mediaTypes."application/manifest+json"]
+suffixes = ["webmanifest"]
+
+[mediaTypes."text/netlify"]
+delimiter = ""
+suffixes = [""]
+
+
+############################ Output Format ###########################
+[outputFormats]
+[outputFormats.WebAppManifest]
+mediaType = "application/manifest+json"
+rel = "manifest"
diff --git a/config/_default/menus.toml b/config/_default/menus.toml
new file mode 100755
index 0000000..b475a23
--- /dev/null
+++ b/config/_default/menus.toml
@@ -0,0 +1,38 @@
+############# English navigation ##############
+
+# main menu
+[[main]]
+name = "Products"
+post = "Dasharo product lines"
+url = "/products/"
+weight = 5
+
+[[main]]
+name = "Learn"
+post = "Explore Dasharo"
+url = "/pages/learn/"
+weight = 10
+
+[[main]]
+name = "Docs"
+post = "Deep Dive"
+url = "https://docs.dasharo.com/"
+weight = 15
+
+[[main]]
+name = "FAQ"
+post = "Find the answer"
+url = "/pages/learn/#dasharo-faq"
+weight = 20
+
+[[main]]
+name = "vPub"
+post = "Meet Us Online"
+url = "https://vpub.dasharo.com/"
+weight = 25
+
+[[main]]
+name = "Contact"
+post = "Contact Us"
+url = "/pages/contact/"
+weight = 30
\ No newline at end of file
diff --git a/config/_default/module.toml b/config/_default/module.toml
new file mode 100644
index 0000000..2e75eac
--- /dev/null
+++ b/config/_default/module.toml
@@ -0,0 +1,27 @@
+[hugoVersion]
+extended = true
+min = "0.105.0"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/components/render-link"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/icons/font-awesome"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/pwa"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/images"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/shortcodes/image"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/seo-tools/site-verifications"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/seo-tools/basic-seo"
+
+[[imports]]
+path = "github.com/gethugothemes/hugo-modules/gzip-caching"
diff --git a/config/_default/params.toml b/config/_default/params.toml
new file mode 100755
index 0000000..e943af1
--- /dev/null
+++ b/config/_default/params.toml
@@ -0,0 +1,52 @@
+#################### default parameters ################################
+# favicon
+favicon = "images/icons/favicon.png"
+# logo
+logo = "images/logo/dasharo-logo.png"
+brand_name = "images/logo/dasharo-header.png"
+# logo text will only show when logo is missing.
+logo_text = "Dasharo"
+# purgeCSS
+purge_css = false
+# google tag manager, see https://developers.google.com/tag-manager/
+google_tag_manager = "GTM-KKH326X" # example: G-XXXXXXXXXX
+# custom script on header, example: custom_script= ""
+custom_script = ""
+# copyright
+theme_copyright = false
+copyright = "[3mdeb](https://3mdeb.com/) | All rights reserved."
+
+# seo meta data for OpenGraph / Twitter Card
+[metadata]
+keywords = ["coreboot", "training", "3mdeb", "course", "platform"]
+description = "A complete ecosystem of tools and products that are used in the process of creating a firmware binary."
+author = "Dasharo"
+image = "images/favicon.png"
+
+# Subscription
+[subscription]
+enable = false
+# mailchimp subsciption
+mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours
+mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074" # replace this code with yours
+
+############################# social site ########################
+# [[social]]
+# title = "facebook"
+# icon = "fab fa-facebook"
+# link = "https://www.facebook.com/dasharo.official/"
+
+[[social]]
+title = "twitter"
+icon = "fab fa-twitter-alt"
+link = "https://twitter.com/Dasharo_com"
+
+[[social]]
+title = "instagram"
+icon = "fab fa-youtube"
+link = "https://www.youtube.com/channel/UCTYvdwdFZ7NAtGK_XRvelaw"
+
+[[social]]
+title = "github"
+icon = "fab fa-reddit"
+link = "https://www.reddit.com/r/3mdeb/"
\ No newline at end of file
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..9ce1a71
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,148 @@
+---
+title: Dasharo
+description: A complete ecosystem of tools and products that are used in the process of creating a firmware binary.
+
+banner:
+ title: meet **DASHARO**
+ description: A complete ecosystem of tools and products that are used in the process of creating a firmware binary.
+
+ page_content_list:
+ - title: What is Dasharo
+ icon: images/icons/knight-black-chess-right-grey.png
+ link: "#what-is-dasharo"
+
+ - title: Why do I need Dasharo
+ icon: images/icons/bishop-chess-piece-grey.png
+ link: "#why-do-i-need-dasharo"
+
+ - title: I want to get a Quote
+ icon: images/icons/rook-grey.png
+ link: "#get-a-quote"
+
+
+what_is_dasharo:
+ title: What is Dasharo
+ description: Dasharo is a set of productized services, Open Core, and SaaS products which help to provide scalable, modular, easy to combine Open Source BIOS, UEFI, and Firmware solutions. It offers the components that are needed to develop and maintain a high quality, and modular firmware, for the stability and security of your platform.
+
+ modules:
+ title: "Dasharo is based on four modules:"
+ lists:
+ - Security Module - features that make your hardware trustworthy
+ - Performance Module - hardware performance optimization features
+ - Compatibility Module - maintenance and compatibility features
+ - Marketing Module - brand awareness and customer value
+
+ note: "Each module contains a set of features that can be added to your Dasharo product."
+
+
+why_need_dasharo:
+ title: Why do you need Dasharo
+ description: There is no secure, high quality and widely compatible BIOS firmware technology solution that OEMs and ODMs can fully own.
+
+ features:
+ # title: "Dasharo focuses on solutions for:"
+ lists:
+ - OEMs/ODMs have no control over their own firmware by being provided with closed source solutions of Independent BIOS Vendors (IBV).
+ - Pricing models are not flexible.
+ - The source code is not provided with open licenses.
+ - Testing results are not revealed and by that vendors do not provide any solid proof of the performance or security of their products.
+ - Software Bill of Materials is not disclosed. IBV does not provide solution details that may reveal components supply chain.
+
+
+join_dasharo_family:
+ title: Break the cycle Join the Dasharo family
+
+ features:
+ - title: "Dasharo provides flexibility within its pricing model:"
+ lists:
+ - standard subscription model
+ - one-time payment model with OEM/ODM full ownership* for the majority of the components
+
+ - title: "Dasharo improves firmware supply chain transparency with open solutions for customers by providing:"
+ lists:
+ - source code
+ - build environment
+ - build reproducibility
+ - full information about software components
+
+
+get_a_quote:
+ title: Get a Quote
+
+ form_step_one:
+ title: Specify a quote
+ options:
+ - value: I want to distribute platforms with Dasharo firmware OEM
+ name: distributePlatforms
+
+ - value: I want to adjust Dasharo to my custom hardware embedded
+ name: adjustDasharo
+
+ - value: I need Dasharo quality firmware for internal / confidential use military, medical
+ name: internalUse
+
+ - value: I represent community
+ name: representCommunity
+
+ - value: I want to buy existing Dasharo Product
+ name: buyExistingProduct
+ class: "buyExisting"
+ download_datasheets:
+ label: Dasharo Firewall
+ file_link: "/downloads/Firewall_Datasheet.pdf"
+
+ form_step_two:
+ title: What stage are you at?
+ options:
+ - value: I need to get more information about
+ name: moreInfo
+ info_links:
+ - label: Dasharo stack
+ link: pages/learn.html#how-dasharo-works
+
+ - label: Dasharo modules
+ link: pages/learn.html#dasharo-modules
+
+ - value: I need a help in choosing Dasharo features for my Platform
+ name: needHelp
+
+ - value: I need a help in choosing platform for selected Dasharo features
+ name: choosingPlatform
+
+ - value: I want to consult features that were chosen for my platform
+ name: consultFeatures
+
+ form_step_three:
+ title: Approximate trading volume
+ options:
+ - value: "Up to a few platforms"
+ id: "min_10"
+
+ - value: "Up to a 100 platforms per year"
+ id: "min_100"
+
+ - value: "100-1000 platforms per year"
+ id: "100-1000"
+
+ - value: "1000-10 000 platforms per year"
+ id: "1.000-10.000"
+
+ - value: "10 000-100 000 platforms per year"
+ id: "10.000-100.000"
+
+ - value: "100 000+ platforms per year"
+ id: "min.100.000+"
+
+ form_step_four:
+ title: Contact us
+ book_a_call_link: "https://calendly.com/3mdeb"
+
+
+newsletter:
+ title: Join our newsletter to receive monthly updates with big news and updates from the Dasharo team
+ mailchimp_form_action: "https://3mdeb.us16.list-manage.com/subscribe/post?u=fce95b885fc13fbf1db611816&id=7085d28b61"
+ mailchimp_form_name: "df0d0bf5-c867-4fe6-acee-6ba2c596a142"
+
+
+
+---
diff --git a/content/contact.md b/content/contact.md
new file mode 100755
index 0000000..a191c48
--- /dev/null
+++ b/content/contact.md
@@ -0,0 +1,15 @@
+---
+title: Dasharo Contact
+description: Discover and see how it works
+
+layout: contact
+url: pages/contact/
+
+banner:
+ title: Dasharo CONTACT
+ description: We answer questions
+
+our_office: Abrahama 1A / 2.05 80-307 Gdańsk, Poland
+email: contact@dasharo.com
+
+---
\ No newline at end of file
diff --git a/content/learn.md b/content/learn.md
new file mode 100644
index 0000000..cf467ce
--- /dev/null
+++ b/content/learn.md
@@ -0,0 +1,363 @@
+---
+title: Dasharo Learn
+description: Discover and see how it works
+
+layout: learn
+url: pages/learn
+
+banner:
+ title: Dasharo LEARN
+ description: Discover and see how it works
+
+ page_content_list:
+ - title: How Dasharo works
+ icon: images/icons/knight-black-chess-right-grey.png
+ link: "#how-dasharo-works"
+
+ - title: Dasharo modules
+ icon: images/icons/rook-grey.png
+ link: "#dasharo-modules"
+
+ - title: DIY
+ icon: images/icons/bishop-chess-piece-grey.png
+ link: "#dasharo-diy"
+
+ - title: FAQ
+ icon: images/icons/queen-chess-piece-grey.png
+ link: "#dasharo-faq"
+
+
+how_dasharo_works:
+ title: How Dasharo works
+
+ how_dasharo_works_details:
+ dasharo_graph_image : images/img/dasharo-graph.svg
+ title: Let’s us briefly explain what exactly Dasharo stack consists of
+
+ content_block_1: The first layer is a target platform. Most clients have it already chosen when starting a journey with Dasharo, however sometimes the platform is only adapted to a pre-selected set of features. With the knowledge about it’s specification we can proceed further.
+
+ content_block_2: The next step is about the firmware layer. The most common is coreboot due to it's strong focus on boot speed, security and flexibility, however the choice depends on targeted users of the platform. Further, depending on the chosen firmware, integration of Intel FSP or AMD AGESA is set. Having it all confirmed, the payload and the operating system may become the next layer – The stack may differ at this point. For example, UEFI firmware doesn't need payload to be implemented, due to it's compatibility with UEFI specification.
+
+ content_block_3: Followingly, selected set of features is implemented. The choice depends on platform specification and it's overall destination. The list of the sample features is available below. The process of creating dedicated Dasharo firmware is performed with the constant support of our team, from the early advisory steps to the constant maintenance process.
+
+
+dasharo_modules:
+ title: Dasharo Modules
+ description: Below are sample Dasharo features that can be added to your Dasharo product.
+
+ modules_category:
+ - title: Security Module
+ modules_list:
+ - title: Static Code and Dynamic Root of Trust for Measurement (S-CRTM and D-RTM)
+ features:
+ - Static Code and Dynamic Root of Trust for Measurement (S-CRT and D-RTM)
+ - To reestablish trust in a compromised environment without reboot (D-RTM)
+
+ - title: Secure, verified and measured boot integration
+ features:
+ - To make sure your platform boots only trusted code.
+
+ - title: Firmware Recovery
+ features:
+ - To recover the firmware image in any situation.
+
+ - title: Firmware re-ownership
+ features:
+ - To complete the ownership transfer and verification of the software delivered with hardware.
+
+ - title: Trusted Platform Module 2.0 (TPM)
+ features:
+ - To make your platform tamper resistant, with secure chip that carries out cryptographic operations.
+
+ - title: Secure firmware update
+ features:
+ - To mitigate supply chain attacks and provide secure system firmware update.
+
+ - title: Security Features Automatic Report
+ features:
+ - To raise awareness of the security features implemented and the level of protection offered by platform firmware.
+
+ - title: OPAL integration
+ features:
+ - To enhance the safety of the data on the disk by leveraging its security features.
+
+ - title: Intel STM or AMD SMM Supervisor
+ features:
+ - To allow only controlled access and harden the level of isolation.
+
+ - title: Hypervisor as payload
+ features:
+ - To increase the security of the running target software to the highest possible level.
+
+ - title: Compatibility Module
+ modules_list:
+ - title: Regression Test Results (RTR)
+ features:
+ - To prove the Dasharo generic and customer-specific features for your platform with a powerful set of automated suites integrated with Dasharo CI and results visualization.
+
+ - title: Documentation
+ features:
+ - To make users self-sufficient with explicit, user-dedicated manuals of released binaries, installation steps and best practices guidelines.
+
+ - title: Continuous Integration
+ features:
+ - To handle faults, isolate and resolve them in a reasonable time, including emergency releases.
+
+ - title: USB boot
+ features:
+ - To easily and quickly change the stuff the platforms boot into, including OS or any bootable tool.
+
+ - title: Support for implementation of the Preboot eXecution Environment (iPXE).
+ features:
+ - To boot from a network using the open source network boot firmware that provides full PXE implementation.To retrieve data through protocols other than TFTP (HTTP, iSCSI and more).
+
+ - title: Continuous Deployment with fwupd/LVFS
+ features:
+ - To have an insight into the continuous delivery process for the embedded firmware in hardware products and faster release rate.
+
+ - title: Operating Systems Compatibility
+ features:
+ - To improve the product accessibility.
+
+ - title: Industry Standards Compliance Testing
+ features:
+ - To gain an insurance on the product operability.
+
+ - title: Legacy support
+ features:
+ - To maintain backward compatibility.
+
+ - title: USB BIOS Recovery Dongle
+ features:
+ - To recover BIOS even in offline environment.
+
+ - title: Performance Module
+ modules_list:
+ - title: CPU Boost
+ features:
+ - To increase significantly performance of the processor.
+
+ - title: Boot time optimization
+ features:
+ - To improve the boot time of the bootloader.
+
+ - title: Power consumption optimization
+ features:
+ - To reach reach a lower power consumption.
+
+
+ - title: Marketing
+ modules_list:
+ - title: Newsletter
+ features:
+ - To allow your clients to be up-to-date with product release notes and events, rising strong interest around the product.
+
+ - title: Blog
+ features:
+ - To make your product visible with blog posts based on release notes with implementation examples marketing means.
+
+ - title: Website
+ features:
+ - "To create a Dasharo product dedicated source base that may contain all crucial aspects of the product: RTR results, CI, Blog, binaries, releases and more according to your choice."
+
+ - title: Dedicated firmware release site with changelogs
+ features:
+ - To place all the binaries in one place with detailed changelogs.
+
+
+
+dasharo_diy:
+ title: Dasharo DIY
+
+ coreboot_yourself:
+ title: coreboot YOURSELF
+ logo: images/logo/cb-logo.png
+ content: >-
+ coreboot source-code is available in the official repository. That means you can port coreboot and adjust payload with chosen features providing that you are deeply experienced in firmware engineering and have a sufficient amount of time. Step-by-step procedures do not exist yet, so in case of any issue or bug, it is challenging to find a solution or at least a guide. Furthermore, integration, validation, emergency releases and maintenance may cause a problem without the constant support of an experienced firmware team.
+
+
+ Are we trying to tell you that it is not a good idea to port and adjust coreboot by yourself? No.
+
+
+ If you are experienced and porting coreboot will serve your purposes, you can fully manage it by yourself and we encourage you to do so! For OEM/ODM vendors, the need for time, quality and stability measures makes Dasharo the best choice. Let all the effort involved in porting, adjusting, maintenance and validation be on us – experienced firmware experts.
+
+ coreboot_with_dasharo:
+ title: coreboot with Dasharo
+ logo: images/logo/dasharo-logo.png
+ content: >-
+ For OEM/ODM vendors the need for time, quality and stability measures Dasharo solution as the best choice. Let all the effort involved in porting, adjusting, maintenance, and validation be set on us – experienced firmware expert.
+
+ what_can_you_gain:
+ title: What can you gain?
+ features:
+ - Full coreboot integration compatible with your specification
+ - Implementation of preferred Dasharo features available for your platform
+ - Graphical User Interface that will let you modify your features
+ - Maintenance support including emergency releases
+ - Transparent validation with regression tests results
+ - Marketing support with technical writing, documentation releases, blog posts and newsletters
+
+
+
+dasharo_faq:
+ title: Dasharo FAQ
+
+ faq_category:
+ - title: General
+ icon: images/icons/rook-grey.png
+ icon_white: images/icons/rook-white.png
+ faq_list:
+ - title: What is Dasharo?
+ content: >-
+ Dasharo is a complete ecosystem of tools and products that are used in the process of creating a binary. It offers the components that are needed to develop and maintain a high quality, scalable, and modular firmware, for the stability and security of your platform. It is the common effect of R&D effort, transparent validation, heavy attestation, smart components, reference OS, long maintenance, and enthusiasm for security and open source solutions.
+
+ - title: What is firmware?
+ content: >-
+ Firmware is a set of instructions created to provide low-level control over a hardware device. Firmware provides information on how the device should operate. A good example of a firmware are embedded systems like traffic lights and consumer appliances. Computers with the most recognized firmware, commonly known as BIOS firmware, used during the booting process of a computer.
+
+ - title: What is the difference between Dasharo and traditional UEFI/BIOS firmware development provided by IBV?
+ content: >-
+ Dasharo relies on open-source components with, as much as possible, a transparent supply chain. IBV-driven UEFI/BIOS development doesn’t reveal the firmware components supply chain details, so the customers don't know what components binary consists of and where the components come from. Dasharo enables the revenue model extension, but also cooperation with the community, crowdsourcing and organizations. UEFI/BIOS business model is dedicated to IBV / OEM customers only. Dasharo delivers transparent validation results, on the contrary IBV UEFI/BIOS development process doesn’t reveal testing results, so the changes cannot be tracked. This also leads to low quality release notes and poor communication with end customers and users. Dasharo by design gives you the opportunity to differentiate through firmware and maximize hardware features utilization, where the most basic UEFI/BIOS provided by OEM/ODM with their platforms focus on crucial features and building margin through volume sales . Dasharo focus, strategy, and goals are targeting into domain-specific computing instead one size fits all.
+
+ - title: Can I port coreboot to the chosen platform myself since it is open-source?
+ content: >-
+ coreboot source-code is available in the official repository. That means you can port coreboot and adjust payload with chosen features providing that you are deeply experienced in firmware engineering and have a sufficient amount of time. Step-by-step procedures do not exist yet, so in case of any issue or bug, it is challenging to find a solution or at least a guide. Furthermore, integration, validation, emergency releases and maintenance may cause a problem without the constant support of an experienced firmware team. Are we trying to tell you that it is not a good idea to port and adjust coreboot by yourself? No. If you are experienced and porting coreboot will serve your purposes, you can fully manage it by yourself and we encourage you to do so! For OEM/ODM vendors, the need for time, quality and stability measures makes Dasharo the best choice. Let all the effort involved in porting, adjusting, maintenance and validation be on us – experienced firmware experts.
+
+ - title: Can I request any demo?
+ content: >-
+ [Visit dasharo.com/products](products/) where product line implementations and details will be available soon.
+
+ - title: Why do I need Dasharo?
+ content: >-
+ To gain transparent validation, heavy attestation, smart components, reference OS, long maintenance and marketing support. Dasharo brings solutions to many of the problems of the traditional UEFI/BIOS firmware development provided by IBV, for example:
+
+ - Existing BIOS firmware products leaves burden of responsibility for optimization to end user
+
+ - Lack of security-focused BIOS firmware product which can seamlessly leverage advanced hardware security features
+
+ - aintaining compatibility and compliance of BIOS firmware is a very complex task
+
+ - Even in the light of competitive advantage OEMs/ODMs usually do not have time and/or resources to increase brand awareness and customer value through BIOS firmware solutions
+
+ If you don’t have a solution yet, let Dasharo become your answer. [Contact us](/#get-a-quote)
+
+ - title: Product Info
+ icon: images/icons/knight-black-chess-right-grey.png
+ icon_white: images/icons/knight-black-chess-right-white.png
+ faq_list:
+ - title: What are Dasharo modules?
+ content: >-
+ Dasharo consists of four modules. Each covers a wide range of features from which the client can build up their own Dasharo firmware: Security Module - hardware protection features, eg. S-CRTM/DRTM Performance Module - hardware performance optimization features, eg. CPU Boost Compatibility Module - maintenance features, eg. CI/CD Marketing Module - brand awareness and customer value features, eg. Newsletter campaigns For the full list of features [visit](#dasharo-modules).
+
+ - title: How long does it take to deliver Dasharo?
+ content: >-
+ Dasharo is created from ready-to-implement components, but the time to implement depends on many factors, such as the amount of features, platform amount and specification, needed standard. [Contact us](/#get-a-quote) to get more detailed information.
+
+ - title: How open is Dasharo?
+ content: >-
+ We are strong believers in Freedom and Open Source Software (FOSS), but we also have to deal with reality. Silicon Vendors and other providers in the firmware supply chain try to monopolize the ecosystem by including NDA procedures and binary blobs. Because of that, Dasharo has to provide seamless integration of Intel FSP, AMD AGESA and other binary components. Dasharo is needed for liberating the firmware ecosystem, because it is the only product that transparently leverages the Open Source Firmware. Dasharo promotes best practices that can prove that a non-closed approach is financially feasible and can lead to an equally effective business model. Concluding, our mission is to make Dasharo product lines as open as possible under existing market circumstances and invest in liberating remaining pieces of the ecosystem. For the Dasharo ecosystem we always use OSS and OSHW.
+
+ - title: Who makes Dasharo?
+ content: >-
+ Dasharo is created by experienced embedded firmware engineers from 3mdeb. The team of world-class experts in creating secure firmware, publicly recognized by industry leaders (for more information check our Press Release [website](https://3mdeb.com/press-releases)). The significant amount of code of the Dasharo ecosystem comes from the Open Source Firmware community of which we are proud members always evangelizing about FOSS and giving back as much as we can.
+
+ - title: How can I learn more about Dasharo?
+ content: >-
+ If you want to know more about how Dasharo works, [visit](/#how-dasharo-works) if you want to get details about particular features, [visit](/#dasharo-modules) If you want to see, where Dasharo can be already found, check our [use cases](products#use-cases) If you want to talk and ask questions, contact us or book a [meeting online](contact).
+
+ - title: What is the difference between Dasharo and coreboot?
+ content: >-
+ coreboot is an open source, extended firmware framework dedicated to embedded systems and modern computers. While is increasingly popular due to its adoption (e.g. Chromebook series), its availability is still limited. coreboot in Dasharo may play the role of a main component, implemented along with chosen Dasharo features, payloads, OS and CI/CD support. But coreboot is only a framework and does not produce a fully-featured BIOS firmware solution.For example, Dasharo easily can work well with LinuxBoot, UEFI/edk2, oreboot and others.
+
+ - title: What in case of potential sudden vulnerabilities during maintenance period?
+ content: >-
+ In case of any suddenly discovered vulnerabilities, according to Dasharo Maintenance Agreement, we will provide you with emergency release to prevent your platform from the potential threat. If you want to know more – [contact us](contact/).
+
+ - title: What OS do I have to choose for my Dasharo Platform?
+ content: >-
+ You can choose any OS you wish to. The most common are Windows and Linux distributions. Please note Dasharo supports also various hypervisors and embedded operating systems.
+
+ - title: What about the ownership rights?
+ content: >-
+ We do believe that taking ownership of firmware and passing it on when needed is critical to platform security. Existing BIOS firmware solutions make this process difficult— or impossible — to perform. Dasharo helps hardware vendors and their customers in making the firmware re-ownership process secure and trustworthy by providing required cryptographic primitives. We believe that there are two state-of-the-art solutions of the problem:
+
+ - [root of trust OCP](https://www.opencompute.org/blog/ocp-security-announces-version-10-specs-for-root-of-trust)
+
+ - [IBM firmware re-ownership](https://www.opencompute.org/documents/ibm-white-paper-ownership-and-control-of-firmware-in-open-compute-project-devices)
+
+ - title: Is there a Dasharo community?
+ content: >-
+ Users demand more communication and interaction with vendors. Communication standards that worked in the past—for presenting incremental changes in firmware—are insufficient now. When it is not provided, informal and unofficial channels will emerge. We direct and coordinate support through communication channels e.g. vendor, OS and firmware forums, Github/Gitlab issue trackers, social media, Slack/Gitter, and similar real-time media.
+
+ - title: What will be the difference in user experience between Dasharo and traditional firmware?
+ content: >-
+ The average user doesn’t know how to update their BIOS firmware. This is because of lack of support, lack of long-term, regular releases, and finally, lack of explicit documentation with clear manuals. Firmware is considered part of hardware and this is the paradigm which is changing right now. Innovations around the releases are summarized, but without information concerning maintenance details. Dasharo's primary focus is features set, but long term we plan to offer customers product-dedicated GUI, continuous integration with regular releases supported by user-friendly documentation, support channels and video manuals. Additional information about your Dasharo product releases, features, development and news can be provided in the form of newsletter campaigns and blog posts created directly by our specialists. The development of your Dasharo firmware can be tracked through Dasharo Regression Test Results website.
+
+ - title: Do I need to have my platform already chosen to request Dasharo?
+ content: >-
+ No, you don’t. Dasharo is a complete ecosystem of tools and components that are crucial to create, adapt and maintain firmware. Platform architecture and microarchitecture largely determines which components can be implemented. If you have a platform you can get a quote[ref] or, if not you can [contact us](contact/), to gain detailed information about the possible solutions.
+
+ - title: What Dasharo consists of?
+ content: >-
+ Dasharo is the common effect of R&D effort, transparent validation, heavy attestation, dedicated components, reference OS, long maintenance, marketing support and enthusiasm for security and open source solutions.
+
+ - title: How can I provide my clients with detailed release information?
+ content: >-
+ - Each Dasharo release contains a binary file, a SHA256 hash of a binary file and a signed hash with a Dasharo release key
+
+ - Each Dasharo release includes a test report
+
+ - Dasharo generic test procedures from a given segment are described in the documentation
+
+ - Dasharo specific test procedures are delivered in the form of a PDF document with a release
+
+ - Each Dasharo release includes an integrity and signature verification procedure
+
+ - title: How can I know about the quality of Dasharo firmware?
+ content: >-
+ - Each release of Dasharo includes a version compatible with Semantic Versioning 2.0.0: [visit](https://semver.org/)
+
+ - Each Dasharo release includes: a release note compliant with the Keep A Changelog 1.0.0 specification: [visit](https://keepachangelog.com/en/1.0.0/)
+
+ - Each Dasharo release contains a detailed description of the components version and a link to the scope of changes introduced since the last release
+
+ - title: Payment
+ icon: images/icons/bishop-chess-piece-grey.png
+ icon_white: images/icons/bishop-chess-piece-white.png
+ faq_list:
+ - title: How much does Dasharo cost?
+ content: >-
+ [Get a quote](/#get-a-quote), to get some detailed information.
+
+ - title: How can I buy Dasharo?
+ content: >-
+ [Contact us](contact/) to set the details of your Dasharo product. Book a call or leave a message so we will call you back.
+
+ - title: What is the payment policy and who pays for Dasharo?
+ content: >-
+ Typically, firmware solutions are sold through royalty payment or subscription-based models. The first option relies on the volume of offered products, what effectively eliminates industries with low volume but high-value platforms e.g. medical robots. Subscription-based models, although better, are still tied to firmware solution providers and similarly lead to all the scope of negative effects of vendor lock-in. Dasharo’s pricing model does not rely on volume and since most components are open-source, you can always change vendor and re-own your firmware code. Dasharo can be purchased by OEM/ODM providers, community crowdfunding, individuals, companies that are looking for dedicated/confidential firmware solutions. To get more dedicated payment information, fill [Get a quote](/#get-a-quote).
+
+ - title: Platforms
+ icon: images/icons/queen-chess-piece-grey.png
+ icon_white: images/icons/queen-chess-piece-white.png
+ faq_list:
+ - title: How are Dasharo firmware updates requested?
+ content: >-
+ Firmware release cycle is set at the early product development stage and according to the individual case. Updates can vary widely, but one common schedule would be delivering updates to users every three to six months depending on the Open Source Core Framework Software release cycle. We also support emergency releases occurring in case of sudden vulnerabilities as well as customer on-demand builds.
+
+ - title: What platforms/microarchitectures are supported?
+ content: >-
+ Dasharo is not limited by the processor architecture or hardware platform. We support any platform with the architecture x86, ARM/Arm64, POWER or RISC-V.
+
+ - title: What Dasharo features are supported on my platform?
+ content: >-
+ Features that are supported on your platform mostly depend on the architecture, microarchitecture and hardware platform design. We need to get this basic information to provide you with the list of supported features on your platform. If you don’t know this information or you don’t know what platform would be the best choice for you – contact us, we will help you in either case.
+
+ - title: How are Dasharo firmware updates requested?
+ content: >-
+ Firmware release cycle is set at the early product development stage and according to the individual case. Updates can vary widely, but one common schedule would be delivering updates to users every three to six months depending on the Open Source Core Framework Software release cycle. We also support emergency releases occurring in case of sudden vulnerabilities as well as customer on-demand builds.
+
+ - title: Are there any Dasharo product lines that support the latest hardware?
+ content: >-
+ Yes, we are currently working on adding Intel Comet Lake U based platform to HCL for Dasharo Firewall, Tiger Lake UP3 based platform as reference platform for Dasharo Laptop, AMD Ryzen R1505G based platform as reference platform for Dasharo Safety-Critical.
+---
\ No newline at end of file
diff --git a/content/policy.md b/content/policy.md
new file mode 100644
index 0000000..b775108
--- /dev/null
+++ b/content/policy.md
@@ -0,0 +1,137 @@
+---
+title: Dasharo cookies
+description: A complete ecosystem of tools and products that are used in the process of creating a firmware binary.
+
+layout: policy
+url: pages/policy/
+
+banner:
+ title: Privacy Policy
+ description: This Privacy Policy describes how your personal information is collected, used, and shared when you visit dasharo.com
+
+---
+
+[dasharo.com](dasharo.com) is operated by 3mdeb Throughout the
+site, the terms “we”, “us” and “our” refer to 3mdeb . 3mdeb offers
+this website, including all information, tools and services
+available from this site to you, the user, conditioned upon your
+acceptance of all terms, conditions, policies and notices stated
+here.
+{.cookies__first-p}
+
+## General Overview
+{.cookies__subtitle}
+
+It is 3mdeb's policy to respect your privacy regarding any
+information we may collect while operating our website. We respect
+your privacy and are committed to protecting personally identifiable
+information you may provide us through the Website. We have adopted
+this privacy policy ("Privacy Policy") to explain what information
+may be collected on our Website, how we use this information, and
+under what circumstances we may disclose the information to third
+parties. This Privacy Policy applies only to information we collect
+through the Website and does not apply to our collection of
+information from other sources. This Privacy Policy, together with
+the Terms of service posted on our Website, set forth the general
+rules and policies governing your use of our Website. Depending on
+your activities when visiting our Website, you may be required to
+agree to additional terms of service.
+
+## Website Visitors
+{.cookies__subtitle}
+
+Like most website operators, 3mdeb collects
+non-personally-identifying information of the sort that web browsers
+and servers typically make available, such as the browser type,
+language preference, referring site, and the date and time of each
+visitor request. 3mdeb's purpose in collecting non-personally
+identifying information is to better understand how 3mdeb's visitors
+use its website. From time to time, 3mdeb may release
+non-personally-identifying information in the aggregate, e.g., by
+publishing a report on trends in the usage of its website. 3mdeb
+also collects potentially personally-identifying information like
+Internet Protocol IP) addresses for logged in users and for users
+leaving comments on [https://dasharo.com/](https://dasharo.com/) blog posts. 3mdeb only
+discloses logged in user and commenter IP addresses under the same
+circumstances that it uses and discloses personally-identifying
+information as described below.
+
+## Gathering of Personally-Identifying Information
+{.cookies__subtitle}
+
+Certain visitors to dasharo.com choose to interact with 3mdeb in
+ways that require 3mdeb to gather personally-identifying
+information. The amount and type of information that 3mdeb gathers
+depends on the nature of the interaction. For example, we ask
+visitors who sign up for a newsletter at dasharo.com to provide a
+username and email address. We also use Google Analytics to help us
+understand how our customers use the Site–you can read more about
+how Google uses your Personal Information here:
+[https://www.google.com/intl/en/policies/privacy/](https://www.google.com/intl/en/policies/privacy/). You can also
+opt-out of Google Analytics here:
+[https://tools.google.com/dlpage/gaoptout](https://tools.google.com/dlpage/gaoptout).
+
+## Security
+{.cookies__subtitle}
+
+The security of your Personal Information is important to us, but
+remember that no method of transmission over the Internet, or method
+of electronic storage is 100% secure. While we strive to use
+commercially acceptable means to protect your Personal Information,
+we cannot guarantee its absolute security.
+
+## Behavioural advertising
+{.cookies__subtitle}
+
+As described above, we use your Personal Information to provide you
+with targeted advertisements or marketing communications we believe
+may be of interest to you. For more information about how targeted
+advertising works, you can visit the Network Advertising
+Initiative’s (“NAI”) educational page at
+[http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work](http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work).
+
+## Do not track
+{.cookies__subtitle}
+
+Please note that we do not alter our Site’s data collection and use
+practices when we see a Do Not Track signal from your browser.
+
+## Links To External Sites
+{.cookies__subtitle}
+
+Our Service may contain links to external sites that are not
+operated by us. If you click on a third party link, you will be
+directed to that third party's site. We strongly advise you to
+review the Privacy Policy and terms of service of every site you
+visit. We have no control over, and assume no responsibility for the
+content, privacy policies or practices of any third party sites,
+products or services.
+
+## Cookies
+{.cookies__subtitle}
+
+To enrich and perfect your online experience, 3mdeb uses "Cookies",
+similar technologies and services provided by others to display
+personalized content, appropriate advertising and store your
+preferences on your computer. A cookie is a string of information
+that a website stores on a visitor's computer, and that the
+visitor's browser provides to the website each time the visitor
+returns. 3mdeb uses cookies to help 3mdeb identify and track
+visitors, their usage of dasharo.com, and their website access
+preferences. dasharo.com visitors who do not wish to have cookies
+placed on their computers should set their browsers to refuse
+cookies before using 3mdeb's websites, with the drawback that
+certain features of 3mdeb's websites may not function properly
+without the aid of cookies. By continuing to navigate our website
+without changing your cookie settings, you hereby acknowledge and
+agree to 3mdeb's use of cookies.
+
+## Privacy Policy Changes
+{.cookies__subtitle}
+
+Although most changes are likely to be minor, 3mdeb may change its
+Privacy Policy from time to time, and in 3mdeb's sole discretion.
+3mdeb encourages visitors to frequently check this page for any
+changes to its Privacy Policy. Your continued use of this site after
+any change in this Privacy Policy will constitute your acceptance of
+such change.
\ No newline at end of file
diff --git a/content/products.md b/content/products.md
new file mode 100644
index 0000000..681adba
--- /dev/null
+++ b/content/products.md
@@ -0,0 +1,44 @@
+---
+title: Dasharo Products
+description: Open Source BIOS firmware solution for selected platforms
+
+layout: products
+
+banner:
+ title: Dasharo PRODUCTS
+ description: Open Source BIOS firmware solution for selected platforms.
+
+ page_content_list:
+ - title: Use cases
+ icon: images/icons/knight-black-chess-right-grey.png
+ link: "#use-cases"
+
+ - title: Data sheets
+ icon: images/icons/rook-grey.png
+ link: "#data-sheets"
+
+
+use_cases:
+ title: Use cases
+ content_in_progress: false
+
+ content_list:
+ - title: Dasharo Workstation
+ link: "https://kingsgambit.dasharo.com/"
+ description: Dasharo firmware for reference platform Dell Optiplex 7010/9010. The products included and the hardware compatibility list will be published soon.
+
+ - title: Dasharo Firewall
+ link: "https://pcengines.github.io/"
+ description: Dasharo firmware for reference platform PC Engines apu2. Click to see the products included and the hardware compatibility list.
+
+
+data_sheets:
+ title: Data sheets
+ content_in_progress: true
+
+ content_list:
+ - title: Datasheet Dasharo Firewall
+ link: "/"
+ description: Features and specification of Dasharo Swiss Gambit for PC Engines apu2
+
+---
\ No newline at end of file
diff --git a/content/terms.md b/content/terms.md
new file mode 100644
index 0000000..db7c95d
--- /dev/null
+++ b/content/terms.md
@@ -0,0 +1,509 @@
+---
+title: Dasharo Terms
+description: Dasharo Privacy & Terms
+
+layout: terms
+url: pages/terms/
+
+banner:
+ title: terms of SERVICE
+ description: Dasharo Privacy & Terms
+
+---
+
+## Terms Overview
+{.terms__content-header}
+
+
+This website is operated by 3mdeb. Throughout the site, the terms
+“we”, “us” and “our” refer to 3mdeb. 3mdeb offers this website,
+including all information, tools and services available from this
+site to you, the user, conditioned upon your acceptance of all
+terms, conditions, policies and notices stated here.
+{.terms__content-description}
+
+
+By visiting our site and/or purchasing something from us, you
+engage in our “Service” and agree to be bound by the following
+terms and conditions (“Terms of Service”, “Terms”), including
+those additional terms and conditions and policies referenced here
+in and/or available by hyperlink. These Terms of Service apply to
+all users of the site, including without limitation users who are
+browsers, vendors, customers, merchants, and/or contributors of
+content.
+{.terms__content-description}
+
+Please read these Terms of Service carefully before accessing or
+using our website. By accessing or using any part of the site, you
+agree to be bound by these Terms of Service. If you do not agree
+to all the terms and conditions of this agreement, then you may
+not access the website or use any services. If these Terms of
+Service are considered an offer, acceptance is expressly limited
+to these Terms of Service.
+{.terms__content-description}
+
+Any new features or tools which are added to the current store
+shall also be subject to the Terms of Service. You can review the
+most current version of the Terms of Service at any time on this
+page. We reserve the right to update, change or replace any part
+of these Terms of Service by posting updates and/or changes to our
+website. It is your responsibility to check this page periodically
+for changes. Your continued use of or access to the website
+following the posting of any changes constitutes acceptance of
+those changes.
+{.terms__content-description}
+
+
+## Section 1 Online Store Terms
+{.terms__content-header}
+
+
+By agreeing to these Terms of Service, you represent that you are
+at least the age of majority in your state or province of
+residence, or that you are the age of majority in your state or
+province of residence and you have given us your consent to allow
+any of your minor dependents to use this site.
+{.terms__content-description}
+
+You may not use our products for any illegal or unauthorized
+purpose nor may you, in the use of the Service, violate any laws
+in your jurisdiction (including but not limited to copyright
+laws).
+{.terms__content-description}
+
+You must not transmit any worms or viruses or any code of a
+destructive nature.
+{.terms__content-description}
+
+A breach or violation of any of the Terms will result in an
+immediate termination of your Services.
+{.terms__content-description}
+
+## Section 2 General Conditions
+{.terms__content-header}
+
+
+We reserve the right to refuse service to anyone for any reason at
+any time.
+{.terms__content-description}
+
+You understand that your content (not including credit card
+information), may be transferred unencrypted and involve (a)
+transmissions over various networks; and (b) changes to conform
+and adapt to technical requirements of connecting networks or
+devices. Credit card information is always encrypted during
+transfer over networks.
+{.terms__content-description}
+
+You agree not to reproduce, duplicate, copy, sell, resell or
+exploit any portion of the Service, use of the Service, or access
+to the Service or any contact on the website through which the
+service is provided, without express written permission by us.
+{.terms__content-description}
+
+The headings used in this agreement are included for convenience
+only and will not limit or otherwise affect these Terms.
+{.terms__content-description}
+
+## Section 3Accuracy, completeness and timelines off information
+{.terms__content-header}
+
+
+We are not responsible if information made available on this site
+is not accurate, complete or current. The material on this site is
+provided for general information only and should not be relied
+upon or used as the sole basis for making decisions without
+consulting primary, more accurate, more complete or more timely
+sources of information. Any reliance on the material on this site
+is at your own risk.
+{.terms__content-description}
+
+This site may contain certain historical information. Historical
+information, necessarily, is not current and is provided for your
+reference only. We reserve the right to modify the contents of
+this site at any time, but we have no obligation to update any
+information on our site. You agree that it is your responsibility
+to monitor changes to our site.
+{.terms__content-description}
+
+## Section 4 Modifications to the service and prices
+{.terms__content-header}
+
+
+Prices for our products are subject to change without notice.
+{.terms__content-description}
+
+We reserve the right at any time to modify or discontinue the
+Service (or any part or content thereof) without notice at any
+time.
+{.terms__content-description}
+
+We shall not be liable to you or to any third-party for any
+modification, price change, suspension or discontinuance of the
+Service.
+{.terms__content-description}
+
+## Section 5 Products or services (if applicable)
+{.terms__content-header}
+
+
+Certain products or services may be available exclusively online
+through the website. These products or services may have limited
+quantities and are subject to return or exchange only according to
+our Return Policy.
+{.terms__content-description}
+
+We have made every effort to display as accurately as possible the
+colors and images of our products that appear at the store. We
+cannot guarantee that your computer monitor’s display of any color
+will be accurate.
+{.terms__content-description}
+
+We reserve the right, but are not obligated, to limit the sales of
+our products or Services to any person, geographic region or
+jurisdiction. We may exercise this right on a case-by-case basis.
+We reserve the right to limit the quantities of any products or
+services that we offer. All descriptions of products or product
+pricing are subject to change at anytime without notice, at the
+sole discretion of us. We reserve the right to discontinue any
+product at any time. Any offer for any product or service made on
+this site is void where prohibited.
+{.terms__content-description}
+
+We do not warrant that the quality of any products, services,
+information, or other material purchased or obtained by you will
+meet your expectations, or that any errors in the Service will be
+corrected.
+{.terms__content-description}
+
+## Section 6 Accuracy of billing and account information
+{.terms__content-header}
+
+
+We reserve the right to refuse any order you place with us. We
+may, in our sole discretion, limit or cancel quantities purchased
+per person, per household or per order. These restrictions may
+include orders placed by or under the same customer account, the
+same credit card, and/or orders that use the same billing and/or
+shipping address. In the event that we make a change to or cancel
+an order, we may attempt to notify you by contacting the e-mail
+and/or billing address/phone number provided at the time the order
+was made. We reserve the right to limit or prohibit orders that,
+in our sole judgment, appear to be placed by dealers, resellers or
+distributors.
+{.terms__content-description}
+
+You agree to provide current, complete and accurate purchase and
+account information for all purchases made at our store. You agree
+to promptly update your account and other information, including
+your email address and credit card numbers and expiration dates,
+so that we can complete your transactions and contact you as
+needed.
+{.terms__content-description}
+
+For more detail, please review our Returns Policy.
+{.terms__content-description}
+
+## Section 7 Optional Tools
+{.terms__content-header}
+
+
+We may provide you with access to third-party tools over which we
+neither monitor nor have any control nor input.
+{.terms__content-description}
+
+You acknowledge and agree that we provide access to such tools ”as
+is” and “as available” without any warranties, representations or
+conditions of any kind and without any endorsement. We shall have
+no liability whatsoever arising from or relating to your use of
+optional third-party tools.
+{.terms__content-description}
+
+Any use by you of optional tools offered through the site is
+entirely at your own risk and discretion and you should ensure
+that you are familiar with and approve of the terms on which tools
+are provided by the relevant third-party provider(s).
+{.terms__content-description}
+
+We may also, in the future, offer new services and/or features
+through the website (including, the release of new tools and
+resources). Such new features and/or services shall also be
+subject to these Terms of Service.
+{.terms__content-description}
+
+## Section 8 Third-party Links
+{.terms__content-header}
+
+
+Certain content, products and services available via our Service
+may include materials from third-parties.
+{.terms__content-description}
+
+Third-party links on this site may direct you to third-party
+websites that are not affiliated with us. We are not responsible
+for examining or evaluating the content or accuracy and we do not
+warrant and will not have any liability or responsibility for any
+third-party materials or websites, or for any other materials,
+products, or services of third-parties.
+{.terms__content-description}
+
+We are not liable for any harm or damages related to the purchase
+or use of goods, services, resources, content, or any other
+transactions made in connection with any third-party websites.
+Please review carefully the third-party’s policies and practices
+and make sure you understand them before you engage in any
+transaction. Complaints, claims, concerns, or questions regarding
+third-party products should be directed to the third-party.
+{.terms__content-description}
+
+## Section 9 User comments, feedback and other submissions
+{.terms__content-header}
+
+
+If, at our request, you send certain specific submissions (for
+example contest entries) or without a request from us you send
+creative ideas, suggestions, proposals, plans, or other materials,
+whether online, by email, by postal mail, or otherwise
+(collectively, ‘comments’), you agree that we may, at any time,
+without restriction, edit, copy, publish, distribute, translate
+and otherwise use in any medium any comments that you forward to
+us. We are and shall be under no obligation (1) to maintain any
+comments in confidence; (2) to pay compensation for any comments;
+or (3) to respond to any comments.
+{.terms__content-description}
+
+We may, but have no obligation to, monitor, edit or remove content
+that we determine in our sole discretion are unlawful, offensive,
+threatening, libelous, defamatory, pornographic, obscene or
+otherwise objectionable or violates any party’s intellectual
+property or these Terms of Service.
+{.terms__content-description}
+
+You agree that your comments will not violate any right of any
+third-party, including copyright, trademark, privacy, personality
+or other personal or proprietary right. You further agree that
+your comments will not contain libelous or otherwise unlawful,
+abusive or obscene material, or contain any computer virus or
+other malware that could in any way affect the operation of the
+Service or any related website. You may not use a false e-mail
+address, pretend to be someone other than yourself, or otherwise
+mislead us or third-parties as to the origin of any comments. You
+are solely responsible for any comments you make and their
+accuracy. We take no responsibility and assume no liability for
+any comments posted by you or any third-party.
+{.terms__content-description}
+
+## Section 10 Personal Information's
+{.terms__content-header}
+
+
+Your submission of personal information through the store is
+governed by our Privacy Policy. To view our Privacy Policy.
+{.terms__content-description}
+
+## Section 11 Errors, inaccuracies and omissions
+{.terms__content-header}
+
+
+Occasionally there may be information on our site or in the
+Service that contains typographical errors, inaccuracies or
+omissions that may relate to product descriptions, pricing,
+promotions, offers, product shipping charges, transit times and
+availability. We reserve the right to correct any errors,
+inaccuracies or omissions, and to change or update information or
+cancel orders if any information in the Service or on any related
+website is inaccurate at any time without prior notice (including
+after you have submitted your order).
+{.terms__content-description}
+
+We undertake no obligation to update, amend or clarify information
+in the Service or on any related website, including without
+limitation, pricing information, except as required by law. No
+specified update or refresh date applied in the Service or on any
+related website, should be taken to indicate that all information
+in the Service or on any related website has been modified or
+updated.
+{.terms__content-description}
+
+## Section 12 Prohibited uses
+{.terms__content-header}
+
+
+In addition to other prohibitions as set forth in the Terms of
+Service, you are prohibited from using the site or its content:
+(a) for any unlawful purpose; (b) to solicit others to perform or
+participate in any unlawful acts; (c) to violate any
+international, federal, provincial or state regulations, rules,
+laws, or local ordinances; (d) to infringe upon or violate our
+intellectual property rights or the intellectual property rights
+of others; (e) to harass, abuse, insult, harm, defame, slander,
+disparage, intimidate, or discriminate based on gender, sexual
+orientation, religion, ethnicity, race, age, national origin, or
+disability; (f) to submit false or misleading information; (g) to
+upload or transmit viruses or any other type of malicious code
+that will or may be used in any way that will affect the
+functionality or operation of the Service or of any related
+website, other websites, or the Internet; (h) to collect or track
+the personal information of others; (i) to spam, phish, pharm,
+pretext, spider, crawl, or scrape; (j) for any obscene or immoral
+purpose; or (k) to interfere with or circumvent the security
+features of the Service or any related website, other websites, or
+the Internet. We reserve the right to terminate your use of the
+Service or any related website for violating any of the prohibited
+uses.
+{.terms__content-description}
+
+## Section 13Disclaimer of warranties; Limitation of liability
+{.terms__content-header}
+
+
+We do not guarantee, represent or warrant that your use of our
+service will be uninterrupted, timely, secure or error-free.
+{.terms__content-description}
+
+We do not warrant that the results that may be obtained from the
+use of the service will be accurate or reliable.
+{.terms__content-description}
+
+You agree that from time to time we may remove the service for
+indefinite periods of time or cancel the service at any time,
+without notice to you.
+{.terms__content-description}
+
+You expressly agree that your use of, or inability to use, the
+service is at your sole risk. The service and all products and
+services delivered to you through the service are (except as
+expressly stated by us) provided ‘as is’ and ‘as available’ for
+your use, without any representation, warranties or conditions of
+any kind, either express or implied, including all implied
+warranties or conditions of merchantability, merchantable quality,
+fitness for a particular purpose, durability, title, and
+non-infringement.
+{.terms__content-description}
+
+In no case shall 3mdeb, our directors, officers, employees,
+affiliates, agents, contractors, interns, suppliers, service
+providers or licensors be liable for any injury, loss, claim, or
+any direct, indirect, incidental, punitive, special, or
+consequential damages of any kind, including, without limitation
+lost profits, lost revenue, lost savings, loss of data,
+replacement costs, or any similar damages, whether based in
+contract, tort (including negligence), strict liability or
+otherwise, arising from your use of any of the service or any
+products procured using the service, or for any other claim
+related in any way to your use of the service or any product,
+including, but not limited to, any errors or omissions in any
+content, or any loss or damage of any kind incurred as a result
+of the use of the service or any content (or product) posted,
+transmitted, or otherwise made available via the service, even if
+advised of their possibility. Because some states or
+jurisdictions do not allow the exclusion or the limitation of
+liability for consequential or incidental damages, in such states
+or jurisdictions, our liability shall be limited to the maximum
+extent permitted by law.
+{.terms__content-description}
+
+## Section 14 Indemnification
+{.terms__content-header}
+
+
+You agree to indemnify, defend and hold harmless 3mdeb Embedded
+Systems and our parent, subsidiaries, affiliates, partners,
+officers, directors, agents, contractors, licensors, service
+providers, subcontractors, suppliers, interns and employees,
+harmless from any claim or demand, including reasonable attorneys’
+fees, made by any third-party due to or arising out of your breach
+of these Terms of Service or the documents they incorporate by
+reference, or your violation of any law or the rights of a
+third-party.
+{.terms__content-description}
+
+## Section 15 Severability
+{.terms__content-header}
+
+
+In the event that any provision of these Terms of Service is
+determined to be unlawful, void or unenforceable, such provision
+shall nonetheless be enforceable to the fullest extent permitted
+by applicable law, and the unenforceable portion shall be deemed
+to be severed from these Terms of Service, such determination
+shall not affect the validity and enforceability of any other
+remaining provisions.
+{.terms__content-description}
+
+## Section 16 Termination
+{.terms__content-header}
+
+
+The obligations and liabilities of the parties incurred prior to
+the termination date shall survive the termination of this
+agreement for all purposes.
+{.terms__content-description}
+
+These Terms of Service are effective unless and until terminated
+by either you or us. You may terminate these Terms of Service at
+any time by notifying us that you no longer wish to use our
+Services, or when you cease using our site.
+{.terms__content-description}
+
+If in our sole judgment you fail, or we suspect that you have
+failed, to comply with any term or provision of these Terms of
+Service, we also may terminate this agreement at any time without
+notice and you will remain liable for all amounts due up to and
+including the date of termination; and/or accordingly may deny you
+access to our Services (or any part thereof).
+{.terms__content-description}
+
+## Section 17 Entire Agreement
+{.terms__content-header}
+
+
+The failure of us to exercise or enforce any right or provision of
+these Terms of Service shall not constitute a waiver of such right
+or provision.
+{.terms__content-description}
+
+These Terms of Service and any policies or operating rules posted
+by us on this site or in respect to The Service constitutes the
+entire agreement and understanding between you and us and govern
+your use of the Service, superseding any prior or contemporaneous
+agreements, communications and proposals, whether oral or written,
+between you and us (including, but not limited to, any prior
+versions of the Terms of Service).
+{.terms__content-description}
+
+Any ambiguities in the interpretation of these Terms of Service
+shall not be construed against the drafting party.
+{.terms__content-description}
+
+## Section 18 Governing Law
+{.terms__content-header}
+
+
+These Terms of Service and any separate agreements whereby we
+provide you Services shall be governed by and construed in
+accordance with the laws of Burgaska 9D/10, Gdańsk, PM, 80-287,
+Poland.
+{.terms__content-description}
+
+## Section 19 Changes to terms of service
+{.terms__content-header}
+
+
+You can review the most current version of the Terms of Service at
+any time at this page.
+{.terms__content-description}
+
+We reserve the right, at our sole discretion, to update, change or
+replace any part of these Terms of Service by posting updates and
+changes to our website. It is your responsibility to check our
+website periodically for changes. Your continued use of or access
+to our website or the Service following the posting of any changes
+to these Terms of Service constitutes acceptance of those changes.
+{.terms__content-description}
+
+## Section 20 Contact Information
+{.terms__content-header}
+
+Questions about the Terms of Service should be sent to us at [contact@3mdeb.com](contact@3mdeb.com).
+{.terms__content-description}
\ No newline at end of file
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..dcb6847
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,14 @@
+module gethugothemes.com
+
+go 1.18
+
+require (
+ github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/images v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/pwa v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20221112105926-def3fe496270 // indirect
+ github.com/gethugothemes/hugo-modules/shortcodes/image v0.0.0-20221112105926-def3fe496270 // indirect
+)
diff --git a/netlify.toml b/netlify.toml
new file mode 100755
index 0000000..faf72bd
--- /dev/null
+++ b/netlify.toml
@@ -0,0 +1,16 @@
+[build]
+publish = "public"
+command = "hugo --minify --gc"
+
+[build.environment]
+HUGO_VERSION = "0.105.0"
+HUGO_BASEURL = "/"
+
+[[headers]]
+for = "/*" # This defines which paths this specific [[headers]] block will cover.
+
+[headers.values]
+X-Frame-Options = "DENY"
+X-XSS-Protection = "1; mode=block"
+Referrer-Policy = "same-origin"
+Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload"
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..855cdbb
--- /dev/null
+++ b/package.json
@@ -0,0 +1,17 @@
+{
+ "name": "gethugothemes-boilerplate",
+ "version": "2.0.0",
+ "license": "UNLICENSED",
+ "author": "gethugothemes",
+ "scripts": {
+ "dev": "cd exampleSite; hugo server || hugo server --themesDir ../..",
+ "test": "cd exampleSite; hugo server --themesDir ../.. --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --verbose --verboseLog --buildDrafts --buildExpired --buildFuture --watch --forceSyncStatic -e production --minify|| hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --verbose --verboseLog --buildDrafts --buildExpired --buildFuture --watch --forceSyncStatic -e production --minify",
+ "build": "cd exampleSite; hugo || hugo --themesDir ../.. --gc --minify --templateMetrics --templateMetricsHints --verbose --verboseLog --buildDrafts --buildExpired --buildFuture --forceSyncStatic",
+ "update": "hugo mod clean && hugo mod get -u ./... && hugo mod tidy"
+ },
+ "devDependencies": {
+ "@fullhuman/postcss-purgecss": "^4.1.3",
+ "postcss": "^8.4.16",
+ "postcss-cli": "^10.0.0"
+ }
+}
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 0000000..c3a6e45
--- /dev/null
+++ b/postcss.config.js
@@ -0,0 +1,35 @@
+const purgecss = require("@fullhuman/postcss-purgecss")({
+ content: ["./hugo_stats.json"],
+ defaultExtractor: (content) => {
+ const els = JSON.parse(content).htmlElements;
+ return [...(els.tags || []), ...(els.classes || []), ...(els.ids || [])];
+ },
+ safelist: [
+ /dark/,
+ /^swiper-/,
+ /collapsing/,
+ /show/,
+ /[aria-expanded=true]/,
+ /[aria-expanded=false]/,
+ /^lb-/,
+ /^gl/,
+ /^go/,
+ /^gc/,
+ /^gs/,
+ /^gi/,
+ /^desc/,
+ /^zoom/,
+ /dragging/,
+ /fullscreen/,
+ /loaded/,
+ /visible/,
+ /current/,
+ /active/,
+ ],
+});
+
+module.exports = {
+ plugins: [
+ ...(process.env.HUGO_ENVIRONMENT === "production" ? [purgecss] : []),
+ ],
+};
diff --git a/static/downloads/Firewall_Datasheet.pdf b/static/downloads/Firewall_Datasheet.pdf
new file mode 100644
index 0000000..3b2a46a
Binary files /dev/null and b/static/downloads/Firewall_Datasheet.pdf differ
diff --git a/themes/dasharo/assets/js/contactPageForm.js b/themes/dasharo/assets/js/contactPageForm.js
new file mode 100644
index 0000000..eae5658
--- /dev/null
+++ b/themes/dasharo/assets/js/contactPageForm.js
@@ -0,0 +1,90 @@
+$(document).ready(function () {
+ let name_form = document.getElementById("name"),
+ user_email = document.getElementById("user_email"),
+ subject_form = document.getElementById("subject"),
+ textarea1_form = document.getElementById("textarea1"),
+ emailSent = document.getElementById("email-sent"),
+ mobile = document.getElementById("mobile");
+
+ const validateEmail = function (data) {
+ let testData = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
+ if (testData.test(data)) {
+ return true;
+ }
+ return false;
+ };
+
+ const handleInvalidForm = function () {
+ emailSent.classList.add("validation-err-msg");
+ emailSent.innerHTML = "Do not leave the field empty!";
+ setTimeout(function () {
+ emailSent.innerHTML = "";
+ emailSent.classList.remove("validation-err-msg");
+ }, 1500);
+ };
+
+ const handleInvalidEmail = function () {
+ user_email.classList.add("validation-err");
+ user_email.value = "Invalid email address!";
+ setTimeout(function () {
+ user_email.value = "";
+ user_email.classList.remove("validation-err");
+ }, 1500);
+ };
+
+ const handleValidForm = function () {
+ emailSent.innerHTML = "Email has been sent!";
+ setTimeout(function () {
+ emailSent.innerHTML = "";
+ name_form.value = "";
+ user_email.value = "";
+ subject_form.value = "";
+ mobile.innerHTML = "";
+ mobile.value = "";
+ textarea1_form.value = "";
+ }, 2500);
+ };
+
+ var user, to, name, subject, text;
+ $("#send_email").click(function () {
+ event.preventDefault();
+ to = "contact@dasharo.com";
+ name = $("#name").val();
+ user = $("#user_email").val();
+ subject = $("#subject").val();
+ mobile = $("#mobile").val();
+ text = $("#textarea1").val();
+
+ if (
+ name_form.value == "" ||
+ user_email.value == "" ||
+ subject_form.value == "" ||
+ textarea1_form.value == ""
+ ) {
+ handleInvalidForm();
+ return console.log("not sent");
+ } else if (!validateEmail(user_email.value)) {
+ handleInvalidEmail();
+ } else {
+ $.post(
+ "https://dasharo.com/send",
+ {
+ to: to,
+ name: name,
+ user: user,
+ subject: subject,
+ mobile: mobile,
+ text: text,
+ },
+ function (data) {
+ if (data == "sent") {
+ console.log("Email sent");
+ handleValidForm();
+ }
+ },
+
+ "text"
+ );
+ }
+ });
+});
diff --git a/themes/dasharo/assets/js/cookies.js b/themes/dasharo/assets/js/cookies.js
new file mode 100644
index 0000000..80d0532
--- /dev/null
+++ b/themes/dasharo/assets/js/cookies.js
@@ -0,0 +1,36 @@
+const cookiesInitialize = function () {
+ const container = document.createElement("div");
+ const link = document.createElement("strong");
+ const hrefContent =
+ window.location.href.indexOf("pages") != -1 ? "./policy" : "./pages/policy";
+
+ container.id = "cookies_info";
+ container.innerHTML =
+ "
This website uses cookies
" +
+ '
The website uses information saved using cookies to ensure maximum convenience in using the website. If you agree to save the information stored in cookies, click on the "x" in the upper right corner of this information. If you do not agree, you can change the cookie settings in your browser: