added tons of features
This commit is contained in:
17
app/[locale]/(root)/layout.tsx
Normal file
17
app/[locale]/(root)/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import {ReactNode} from 'react'
|
||||
|
||||
import Above from '@/components/shared/above'
|
||||
import Footer from '@/components/shared/footer'
|
||||
import Header from '@/components/shared/header'
|
||||
|
||||
export default async function HomeLayout({children}: {children: ReactNode}) {
|
||||
return (
|
||||
<>
|
||||
<Above />
|
||||
<Header />
|
||||
{/*<Above />*/}
|
||||
{children}
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user