add sub git and git-tools

This commit is contained in:
2022-11-06 21:07:22 +01:00
commit 9a0c882fe4
18 changed files with 3803 additions and 0 deletions

14
app/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { getPosts } from '@/lib/getPosts';
import Posts from './posts';
export const revalidate = 10;
export default async function Page() {
const posts = await getPosts();
return (
<div className="space-y-6">
<Posts posts={posts} />
</div>
);
}