Files
twenty_crm/packages/twenty-website/src/app/layout.tsx
Félix Malfait 3d5a364e29 Marketing website improvements (#3169)
* Website improvement

* Improve website design

* Start writing script for user guide

* Begin adding user guide
2023-12-27 16:14:42 +01:00

44 lines
1.0 KiB
TypeScript

import type { Metadata } from 'next'
import { Gabarito } from 'next/font/google'
import EmotionRootStyleRegistry from './emotion-root-style-registry'
import styled from '@emotion/styled'
import { HeaderDesktop } from './components/HeaderDesktop'
import { FooterDesktop } from './components/FooterDesktop'
import { HeaderMobile } from '@/app/components/HeaderMobile'
import './layout.css'
export const metadata: Metadata = {
title: 'Twenty.dev',
description: 'Twenty for Developer',
icons: '/images/core/logo.svg',
}
const gabarito = Gabarito({
weight: ['400', '500'],
subsets: ['latin'],
display: 'swap',
adjustFontFallback: false
})
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className={gabarito.className}>
<body>
<EmotionRootStyleRegistry>
<HeaderDesktop />
<div className="container">
<HeaderMobile />
{children}
</div>
<FooterDesktop />
</EmotionRootStyleRegistry>
</body>
</html>
)
}