Files
twenty_crm/packages/twenty-website/src/app/page.tsx
Félix Malfait 5ef5bbdc4d Marketing website POC (#3139)
First website POC
2023-12-23 10:08:55 +01:00

15 lines
424 B
TypeScript

import Image from 'next/image'
import { ContentContainer } from './components/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>
)
}