-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Doer-org/client-create-queue
Client create queue
- Loading branch information
Showing
4 changed files
with
38 additions
and
63 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
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
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 |
---|---|---|
@@ -1,20 +1,14 @@ | ||
import type { Metadata } from 'next'; | ||
import type { Metadata } from "next"; | ||
|
||
export const metadata: Metadata = { title: 'Duck Stream - draw -' }; | ||
export const metadata: Metadata = { title: "Duck Stream - draw -" }; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
export default function RootLayout({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<> | ||
<header className='h-[8vh] flex items-center bg-secondary'> | ||
<h1 className='text-sm text-main w-[95vw] m-auto'>Duck Stream</h1> | ||
<header className="h-[8vh] flex items-center bg-secondary"> | ||
<h1 className="text-sm text-main w-[95vw] m-auto">Duck Stream</h1> | ||
</header> | ||
<main className='flex min-h-[92vh] flex-col items-center justify-center gap-5 bg-secondary'> | ||
{children} | ||
</main> | ||
<main className="flex min-h-[92vh] flex-col gap-5 bg-secondary">{children}</main> | ||
</> | ||
); | ||
} |
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