Nextbase Features
Nextbase Features
HomeBlogDocsAdmin PanelAuthenticationBuilt-in Dark ThemeBuilt with shadcn/uiChangelog ManagerDALL-E IntegrationFeedback ManagerFumadocs IntegrationNextbase Ultimate Starter KitOpenAI IntegrationPaymentsRoadmap ManagerRole-Based Access ControlSentry IntegrationSEO-Optimized BlogStripe IntegrationFramer Pages SupportTailwind CSS IntegrationTypeScript IntegrationUnkey IntegrationUser ImpersonationWorkspaces

Framer Pages Support

Nextbase is built on top of Next.js. Hence it supports the integration of Framer-designed pages, allowing you to seamlessly incorporate visually stunning designs into your application. Use the rewrites feature in Next.js to add any framer page as a route in your Nextbase application.

next.config.mjs
export default {
  // other configurations...
  rewrites: async () => {
    return [
      {
        source: "/",
        destination: "https://your-framer-website.framer.app",
      },
      {
        source: "/another-page",
        destination: "https://your-framer-website.framer.app/another-page",
      },
    ];
  },
};

This will show the framer page at the / and /another-page routes in your Nextbase application.

Not only Framer, you can use this feature to add any website as a route in your Nextbase application.

Stripe Integration

Previous Page

Tailwind CSS Integration

Next Page