Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 3b8660d

Browse files
committed
Fix error
1 parent eefdc47 commit 3b8660d

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

pages/index.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ export default function HomePage({post}) {
2424
// Display static page content as fallback.
2525
return (
2626
<Layout title={config.siteTitle} description={config.siteDescription}>
27-
<Hero
28-
background="https://images.unsplash.com/photo-1513106021000-168e5f56609d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2560&q=70"
29-
title="Next.js Starter"
30-
description="A slightly opinionated, yet bare-bones Next.js starter."
31-
/>
32-
<p>
33-
To display your WordPress homepage dynamically, set your homepage to a
34-
static page via the WP dashboard (Settings: Reading Settings).
35-
</p>
27+
<>
28+
<Hero
29+
background="https://images.unsplash.com/photo-1513106021000-168e5f56609d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2560&q=70"
30+
title="Next.js Starter"
31+
description="A slightly opinionated, yet bare-bones Next.js starter."
32+
/>
33+
<p>
34+
To display your WordPress homepage dynamically, set your homepage to a
35+
static page via the WP dashboard (Settings: Reading Settings).
36+
</p>
37+
</>
3638
</Layout>
3739
)
3840
}

0 commit comments

Comments
 (0)