mirror of
https://github.com/vernu/textbee.git
synced 2026-02-20 07:34:00 -05:00
26 lines
699 B
TypeScript
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>
|
|
)
|
|
}
|