Skip to content

Commit

Permalink
docs: introduces core concepts
Browse files Browse the repository at this point in the history
  • Loading branch information
clearlysid committed Sep 2, 2023
1 parent 3cf2a86 commit 284eda6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/content/docs/2/guide/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<Stub>
## 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.

</Stub>
## 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.

0 comments on commit 284eda6

Please sign in to comment.