Changed layout of writing page

This commit is contained in:
r-freeman 2023-01-05 20:03:09 +00:00
parent 46be576d86
commit 596e364aca
3 changed files with 81 additions and 89 deletions

View File

@ -14,10 +14,10 @@ function ChevronRightIcon(props) {
) )
} }
export function Card({ as: Component = 'div', className, children }) { export function Card({as: Component = 'div', className, small, children}) {
return ( return (
<Component <Component
className={clsx(className, 'group relative flex flex-col items-start')} className={clsx(className, 'group relative flex flex-col items-start', small && 'md:flex-row justify-between')}
> >
{children} {children}
</Component> </Component>
@ -27,7 +27,8 @@ export function Card({ as: Component = 'div', className, children }) {
Card.Link = function CardLink({children, ...props}) { Card.Link = function CardLink({children, ...props}) {
return ( return (
<> <>
<div className="absolute -inset-y-6 -inset-x-4 z-0 scale-95 bg-zinc-50 opacity-0 transition group-hover:scale-100 group-hover:opacity-100 dark:bg-zinc-800/50 sm:-inset-x-6 sm:rounded-2xl" /> <div
className="absolute -inset-y-6 -inset-x-4 z-0 scale-95 bg-zinc-50 opacity-0 transition group-hover:scale-100 group-hover:opacity-100 dark:bg-zinc-800/50 sm:-inset-x-6 sm:rounded-2xl"/>
<Link {...props}> <Link {...props}>
<span className="absolute -inset-y-6 -inset-x-4 z-20 sm:-inset-x-6 sm:rounded-2xl"/> <span className="absolute -inset-y-6 -inset-x-4 z-20 sm:-inset-x-6 sm:rounded-2xl"/>
<span className="relative z-10">{children}</span> <span className="relative z-10">{children}</span>

View File

@ -245,7 +245,7 @@ export async function getStaticProps() {
return { return {
props: { props: {
articles: (await getAllArticles()) articles: (await getAllArticles())
.slice(0, 2) .slice(0, 1)
.map(({component, ...meta}) => meta), .map(({component, ...meta}) => meta),
}, },
} }

View File

@ -7,29 +7,20 @@ import {formatDate} from '@/lib/formatDate'
function Article({article}) { function Article({article}) {
return ( return (
<article className="md:grid md:grid-cols-4 md:items-baseline"> <article>
<Card className="md:col-span-3"> <Card small={true}>
<Card.Title href={`/writing/${article.slug}`}> <Card.Title href={`/writing/${article.slug}`}>
{article.title} {article.title}
</Card.Title> </Card.Title>
<Card.Eyebrow <Card.Eyebrow
as="time" as="time"
dateTime={article.date} dateTime={article.date}
className="md:hidden"
decorate={false} decorate={false}
className="flex-shrink-0 order-last md:ml-4"
> >
{formatDate(article.date)} {formatDate(article.date)}
</Card.Eyebrow> </Card.Eyebrow>
<Card.Description>{article.description}</Card.Description>
<Card.Cta>Read article</Card.Cta>
</Card> </Card>
<Card.Eyebrow
as="time"
dateTime={article.date}
className="mt-1 hidden md:block"
>
{formatDate(article.date)}
</Card.Eyebrow>
</article> </article>
) )
} }
@ -57,8 +48,8 @@ export default function ArticlesIndex({articles}) {
intro="All of my long-form thoughts on software engineering, and more, displayed in chronological order." intro="All of my long-form thoughts on software engineering, and more, displayed in chronological order."
gradient="bg-gradient-to-r from-pink-500 to-violet-500" gradient="bg-gradient-to-r from-pink-500 to-violet-500"
> >
<div className="md:border-l md:border-zinc-100 md:pl-6 md:dark:border-zinc-700/40"> <div>
<div className="flex max-w-3xl flex-col space-y-16"> <div className="max-w-3xl space-y-16">
{articles.map((article) => ( {articles.map((article) => (
<Article key={article.slug} article={article}/> <Article key={article.slug} article={article}/>
))} ))}