-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker-compose.yml and layout.tsx
- Loading branch information
etienne
committed
Feb 5, 2024
1 parent
a97afad
commit 4f982d5
Showing
2 changed files
with
12 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
import type { Metadata } from 'next' | ||
import './globals.css' | ||
import type { Metadata } from "next"; | ||
import "./globals.css"; | ||
|
||
export const metadata: Metadata = { | ||
title: 'Real time Chat', | ||
description: 'Real time chat application', | ||
} | ||
title: "Real time Chat", | ||
description: "Real time chat application", | ||
}; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body className='bg-[url("/images/bg.jpg")] min-h-screen bg-cover bg-no-repeat bg-[#050505AB] bg-blend-overlay'>{children}</body> | ||
<body className='bg-[url("/images/bg.jpg")] min-h-screen bg-cover bg-no-repeat bg-[#050505AB] bg-blend-overlay'> | ||
{children} | ||
</body> | ||
</html> | ||
) | ||
} | ||
); | ||
} |