Files
twenty/packages/twenty-website/src/app/page.tsx
Ady Beraud 6e8c6c8e58 fixed twenty website build (#5174)
Made code compile during build even when then environment variable is
not yet available

Co-authored-by: Ady Beraud <a.beraud96@gmail.com>
2024-04-25 15:54:54 +02:00

16 lines
458 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 Clouflare to split the traffic between the two sites.
</div>
</ContentContainer>
);
}