Skip to content

Commit 0099183

Browse files
Merge pull request #148 from gofr-dev/route/arrangodb
add arrangodb route for go get
2 parents d7163f7 + f4ccff8 commit 0099183

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

Diff for: src/app/pkg/gofr/datasource/arrangodb/layout.jsx

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
}
7+
8+
export default function RootLayout({ children }) {
9+
return children
10+
}

Diff for: src/app/pkg/gofr/datasource/arrangodb/page.jsx

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import React from 'react';
2+
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;

0 commit comments

Comments
 (0)