From 82b6a033b834b817cd6b52db49b33613c9d2e42c Mon Sep 17 00:00:00 2001 From: Rodney Lab Date: Thu, 28 Oct 2021 15:59:44 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=92=AB=20update=20home=20page=20co?= =?UTF-8?q?ntent=20andstyle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/index.css.ts | 4 ++++ src/routes/index.svelte | 21 ++++++++++++++++----- 2 files changed, 20 insertions(+), 5 deletions(-) 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.