Search
createWebPage
createWebPage
Create a new web page.
const webPage = await framer.createWebPage("/about") await webPage.navigateTo()
If you want to open the newly created web page, you can .navigateTo() the page after creation.
Parameters
pagePath:string– The path for the new web page (e.g., "/about").
Returns
Promise<WebPageNode>