Skip to content

Commit

Permalink
fix: 💫 update home page content andstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneylab committed Oct 28, 2021
1 parent d47132b commit 82b6a03
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
4 changes: 4 additions & 0 deletions src/routes/index.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ export const summaryText = style({
fontSize: [fontSize2],
color: themeVars.colour.textSecondary,
});

export const extraSummaryText = style({
color: themeVars.colour.textSecondary,
});
21 changes: 16 additions & 5 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -95,10 +102,14 @@
a blog site quicker by managing important blog features like
<strong>comment and message forms</strong>
as well as post
<strong>views and likes</strong>. 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.
<strong>views and likes</strong>.
</p>
<p class={extraSummaryText}>
This demo <strong>Svelte</strong> site is static and uses Serverless
<strong>Rust Cloudflare Workers</strong>
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 <strong>Supabase</strong> PostgreSQL database.
</p>
</Card>
<BlogRoll {posts} />

0 comments on commit 82b6a03

Please sign in to comment.