mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
Move src dir
This commit is contained in:
18
src/app/blog/page.tsx
Normal file
18
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Link from "next/link"
|
||||
import { getBlogs } from "./fetchers"
|
||||
|
||||
export default async function BlogsPage() {
|
||||
const blogs = await getBlogs()
|
||||
return (
|
||||
<main>
|
||||
{blogs.map((blog, i) => (
|
||||
<article key={i} className="grid grid-cols-4 text-3xl">
|
||||
<h1>{blog.frontmatter.title}</h1>
|
||||
<p>{blog.frontmatter.author}</p>
|
||||
<p>{blog.frontmatter.publishDate}</p>
|
||||
<Link href={`/blogs/${blog.slug}`}>Read More</Link>
|
||||
</article>
|
||||
))}
|
||||
</main>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user