From cebb877d0ee4ecce527b004ceeb8313b2ab349c8 Mon Sep 17 00:00:00 2001 From: heyhiru Date: Sat, 11 Nov 2023 14:48:59 +0530 Subject: [PATCH] added lobby component in the file Signed-off-by: heyhiru --- client/src/pages/index.js | 118 ++------------------------------------ 1 file changed, 5 insertions(+), 113 deletions(-) diff --git a/client/src/pages/index.js b/client/src/pages/index.js index 2ab84cf..c11f5db 100644 --- a/client/src/pages/index.js +++ b/client/src/pages/index.js @@ -1,118 +1,10 @@ -import Image from 'next/image' -import { Inter } from 'next/font/google' - -const inter = Inter({ subsets: ['latin'] }) +import LobbyScreen from '@/components/Lobby'; +import SocketProvider from '@/context/SocketProvider'; export default function Home() { return ( -
-
-

- Get started by editing  - src/pages/index.js -

-
- - By{' '} - Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

- Discover and deploy boilerplate example Next.js projects. -

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
-
+ + + ) }