mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 20:51:49 +00:00
init
This commit is contained in:
26
thirdeye/dashboard/app/layout.tsx
Normal file
26
thirdeye/dashboard/app/layout.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import type { Metadata } from 'next'
|
||||
import './globals.css'
|
||||
import MaterialSymbols from './components/MaterialSymbols'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'ThirdEye Dashboard',
|
||||
description: 'Multi-Agent Conversation Intelligence',
|
||||
icons: {
|
||||
icon: '/new-logo.png',
|
||||
},
|
||||
}
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" className="dark">
|
||||
<body className="text-on-surface font-poppins selection:bg-primary-container selection:text-on-primary-container">
|
||||
<MaterialSymbols />
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user