Files
twenty_crm/packages/twenty-website/src/app/page.tsx
JarWarren afdd44ff66 Cloudflare name typo (#10239)
Fix typo in Cloudflare
2025-02-17 08:50:15 +01:00

16 lines
459 B
TypeScript

import { ContentContainer } from './_components/ui/layout/ContentContainer';
export const dynamic = 'force-dynamic';
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 Cloudflare to split the traffic between the two sites.
</div>
</ContentContainer>
);
}