diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index b936db4..d0d3a9c 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -1,25 +1,16 @@ import React from 'react' import './global.css' -/* import { Inter } from 'next/font/google' -const inter = Inter({ - subsets: ['latin'], - display: 'swap', -}) - */ -/* Our app sits here to not cause any conflicts with payload's root layout */ +import Header from '@/components/Header' +import Footer from '@/components/Footer' + const Layout: React.FC<{ children: React.ReactNode }> = ({ children }) => { - { - /* - {children} - - */ - } - return ( - {children} +
+
{children}
+