diff --git a/apps/playground-web/app/layout.tsx b/apps/playground-web/app/layout.tsx index 6a38775..19bf7be 100644 --- a/apps/playground-web/app/layout.tsx +++ b/apps/playground-web/app/layout.tsx @@ -4,6 +4,8 @@ import type { Metadata } from 'next'; // styles import '@/styles/globals.css'; +import Header from '@/components/Header/Header'; +import Footer from '@/components/Footer/Footer'; export const metadata: Metadata = { title: 'DiceDB Playground', @@ -21,7 +23,11 @@ export default function RootLayout({ }>) { return ( - {children} + +
+ {children} +