diff --git a/src/routes/index.css.ts b/src/routes/index.css.ts index 4c405c9..e4eb652 100644 --- a/src/routes/index.css.ts +++ b/src/routes/index.css.ts @@ -36,3 +36,7 @@ export const summaryText = style({ fontSize: [fontSize2], color: themeVars.colour.textSecondary, }); + +export const extraSummaryText = style({ + color: themeVars.colour.textSecondary, +}); diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 0536b5b..3d776ae 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -25,7 +25,14 @@ import Card from '$lib/components/Card.svelte'; import SEO from '$lib/components/SEO/index.svelte'; import website from '$lib/config/website'; - import { cardContainer, cardContent, header, summaryHeading, summaryText } from './index.css'; + import { + cardContainer, + cardContent, + extraSummaryText, + header, + summaryHeading, + summaryText, + } from './index.css'; export let posts; @@ -95,10 +102,14 @@ a blog site quicker by managing important blog features like comment and message forms as well as post - views and likes. This proof of concept site is static and uses Serverless - Cloudflare Workers to read and create commments as well as other interactive elements using REST - requests, adding spam detection and Captchas without the added hassle of adding spam detection - and Captchas. + views and likes. +
++ This demo Svelte site is static and uses Serverless + Rust Cloudflare Workers + to read and create commments as well as other interactive elements using REST requests, adding spam + detection and Captchas without the added hassle of adding spam detection and Captchas. The app is + backed by a Supabase PostgreSQL database.