chore: stylistic changes

This commit is contained in:
enscribe 2024-09-10 22:50:12 -07:00
parent 051e466b6d
commit f705c07d55
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
8 changed files with 128 additions and 43 deletions

View file

@ -6,6 +6,7 @@ import BlogCard from '@components/BlogCard.astro'
import { buttonVariants } from '@/components/ui/button'
import { getCollection } from 'astro:content'
import Link from '@components/Link.astro'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
const blog = (await getCollection('blog'))
.filter((post) => !post.data.draft)
@ -16,8 +17,17 @@ const blog = (await getCollection('blog'))
<Layout title="Home" description="Home">
<Container>
<section class="space-y-6">
<div class="min-w-full">
<h1 class="mb-4 text-3xl font-bold">Occasionally, less is more</h1>
<Card>
<CardHeader>
<CardTitle className="text-3xl">er·u·dite</CardTitle>
<CardDescription>/ˈer(y)əˌdīt/</CardDescription>
</CardHeader>
<CardContent>
<p class="font-medium">adjective</p>
<p>having or showing great knowledge or learning.</p>
</CardContent>
</Card>
<div class="mt-8">
<p class="prose min-w-full dark:prose-invert">
{SITE.TITLE} is an opinionated, no-frills static blogging template built
with Astro.