Files
textbee/web/app/layout.tsx

26 lines
699 B
TypeScript

import { PropsWithChildren } from 'react'
import '@/styles/main.css'
import { Metadata } from 'next'
import Footer from '@/components/shared/footer'
import { Toaster } from '@/components/ui/toaster'
import Analytics from '@/components/shared/analytics'
import { Session } from 'next-auth'
import { getServerSession } from 'next-auth'
import { authOptions } from '@/lib/auth'
export const metadata: Metadata = {
title: 'textbee.dev - sms gateway - dashboard',
metadataBase: new URL('https://textbee.dev'),
}
export default async function RootLayout({ children }: PropsWithChildren) {
return (
<html lang='en'>
<body>
<main>{children}</main>
</body>
</html>
)
}