-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5234001
commit acbf43e
Showing
3 changed files
with
1,417 additions
and
764 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export const metadata = { | ||
other: { | ||
'go-import': 'gofr.dev git https://github.com/gofr-dev/gofr', | ||
'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}' | ||
}, | ||
} | ||
|
||
export default function RootLayout({ children }) { | ||
return children | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
|
||
const Page = () => { | ||
return ( | ||
<div className={`flex justify-center items-center min-h-[70vh]`}> | ||
<div className={`text-4xl font-semibold flex gap-3 flex-wrap justify-center`}> | ||
<span> | ||
</span> | ||
<span className={`text-sky-400`}></span> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Page; |
Oops, something went wrong.