Dear community ,
I just started off with builderio and been trying to figure out why my landing page doesn’t work.
i used “automatic integration” to start off.
appreciate any hints
Hello @valmal,
Welcome to the builder.io forum.
Could you give us more context on your tech stack and share screenshots of the project directory structure?
Of course! directory structure:
using latest nextjs deployed on vercel:
I see you don’t have an index route, such as pages/index.tsx , therefore, use pages/[[...page.tsx]] with two sets of square brackets instead of [...page].tsx. The two square brackets means that Builder handles the app’s home page.
pages/index.tsx
pages/[[...page.tsx]]
[...page].tsx
Thank you so much