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

21
app/layout.tsx Normal file
View File

@@ -0,0 +1,21 @@
import '@/styles/dist.css';
import React from 'react';
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html>
<head>
<title>kjuulh microblog</title>
</head>
<body className="box-border overflow-y-scroll bg-zinc-900">
<div className="grid grid-cols-[1fr,min(800px,100%),1fr] px-6">
<div className="col-start-2 space-y-6">{children}</div>
</div>
</body>
</html>
);
}