logic for site tree

This commit is contained in:
2023-05-30 18:14:12 -05:00
parent e19c239e46
commit dc094d7a32
3 changed files with 37 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
'use client'
import Navbar from '@/components/Navbar'
import SiteTree from '@/components/SiteTree'
import { MDXProvider } from '@mdx-js/react'
import { Inter } from 'next/font/google'
import './globals.css'
@@ -23,6 +24,7 @@ export default function RootLayout({
<body className={inter.className}>
<>
<Navbar />
<SiteTree />
{children}
</>
</body>