From 284eda6bdbd690318cd666d6650e95ad2817e656 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Sat, 2 Sep 2023 17:11:58 +0530 Subject: [PATCH] docs: introduces core concepts --- src/content/docs/2/guide/core-concepts.mdx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/content/docs/2/guide/core-concepts.mdx b/src/content/docs/2/guide/core-concepts.mdx index 3f8912715a..c00ae44cab 100644 --- a/src/content/docs/2/guide/core-concepts.mdx +++ b/src/content/docs/2/guide/core-concepts.mdx @@ -2,10 +2,12 @@ title: Core Concepts --- -import Stub from '@components/Stub.astro'; +As you embark on your journey with Tauri, having a working knowledge of the concepts covered on this page will help you to get the most out of the framework. - +## Single Page Applications (SPAs) -SPAs, SSG, etc. +Single Page Applications, often referred to as SPAs, load a single HTML page and dynamically update its content using Javascript as users interact with it. This is commonly achieved using frameworks like React, Vue.js, or Angular, which handle rendering and navigation. SPAs provide a smooth user experience by reducing page reloads and enhancing responsiveness. - +## Static Site Generators (SSGs) + +Static Site Generators are tools that enable developers to create websites with pre-built HTML, CSS, and JavaScript files. SSGs generate static files during the build process, which can then be hosted on a web server. Popular SSGs include Eleventy, Jekyll, and Hugo, which streamline the process of creating and maintaining static websites.