Skip to content

Commit aacb8fe

Browse files
committed
add go get fix
1 parent 18da9ed commit aacb8fe

File tree

1 file changed

+9
-15
lines changed

1 file changed

+9
-15
lines changed
Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
import React from 'react';
1+
export const metadata = {
2+
other: {
3+
'go-import': 'gofr.dev git https://github.com/gofr-dev/gofr',
4+
'go-source': 'gofr.dev https://github.com/gofr-dev/gofr https://github.com/gofr-dev/gofr/tree/main{/dir} https://github.com/gofr-dev/gofr/blob/main{/dir}/{file}#L{line}'
5+
},
6+
}
27

3-
4-
const Page = () => {
5-
return (
6-
<div className={`flex justify-center items-center min-h-[70vh]`}>
7-
<div className={`text-4xl font-semibold flex gap-3 flex-wrap justify-center`}>
8-
<span>
9-
</span>
10-
<span className={`text-sky-400`}></span>
11-
</div>
12-
</div>
13-
);
14-
};
15-
16-
export default Page;
8+
export default function RootLayout({ children }) {
9+
return children
10+
}

0 commit comments

Comments
 (0)