Files
twenty_crm/packages/twenty-website/src/app/page.tsx
Félix Malfait 5de1c2c31d New folder structure for website (#4159)
New folder structure
2024-02-23 17:42:13 +01:00

14 lines
417 B
TypeScript

import { ContentContainer } from './_components/ui/layout/ContentContainer';
export default function Home() {
return (
<ContentContainer>
<div style={{ minHeight: '60vh', marginTop: '50px' }}>
Part of the website is built directly with Framer, including the
homepage. <br />
We use Clouflare to split the traffic between the two sites.
</div>
</ContentContainer>
);
}