mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-02-06 14:42:40 +00:00
hmm
This commit is contained in:
@@ -17,7 +17,7 @@ const Page: NextPage = async () => {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-center text-2xl font-bold">ブログ一覧</h1>
|
<h1 className="text-center text-2xl font-bold">ブログ一覧</h1>
|
||||||
<ul className="mt-8 grid grid-cols-1 sm:grid-cols-2 gap-4">
|
<ul className="mt-8 grid grid-cols-1 gap-4 sm:grid-cols-2">
|
||||||
{blogList.map((blog) => (
|
{blogList.map((blog) => (
|
||||||
<li
|
<li
|
||||||
key={blog.slug}
|
key={blog.slug}
|
||||||
|
|||||||
@@ -10,13 +10,7 @@ const Header: React.FC = () => {
|
|||||||
Home
|
Home
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="/about"
|
href="/blogs"
|
||||||
className="text-gray-700 hover:text-gray-900"
|
|
||||||
>
|
|
||||||
About
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
href="/contact"
|
|
||||||
className="text-gray-700 hover:text-gray-900"
|
className="text-gray-700 hover:text-gray-900"
|
||||||
>
|
>
|
||||||
Blog
|
Blog
|
||||||
|
|||||||
Reference in New Issue
Block a user