add sub git and git-tools
This commit is contained in:
21
app/layout.tsx
Normal file
21
app/layout.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user