Skip to content

Commit

Permalink
fix: home meta description #242
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfisher committed Oct 11, 2024
1 parent 09619ad commit 1c07707
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Head = () => {
<>
<PageHead
title="Home | ajfisher.me"
description="Featured and recent posts from ajfisher"
description="Explore insights on technology, business and user experience at the intersection of AI, web, media and digital innovation."
type="list"
/>
</>
Expand Down Expand Up @@ -44,7 +44,7 @@ const HomePage = ({pageContext, data}) => {
return (
<Layout slug="/" featured={featured.edges[0].node}>
<Intro>Observations, images and code from ajfisher</Intro>
<h2 className="home">Featured posts</h2>
<h1 className="home">Featured posts</h1>
<ListItems>
{featured.edges.map(({node}, index) => {
// jump out on first as this will appear up top
Expand Down Expand Up @@ -75,7 +75,7 @@ const HomePage = ({pageContext, data}) => {
})}
</ListItems>

<h2 className="home">Recent posts</h2>
<h1 className="home">Recent posts</h1>
<ListItems>
{filtered_posts.map(({node}) => {
const { slug, title, date,
Expand Down

0 comments on commit 1c07707

Please sign in to comment.