You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
code: 'export default function About() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>About</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n </div>\r\n );\r\n}\r\n',
code: 'export default function Account() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>Account</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n </div>\r\n );\r\n}\r\n',
code: 'export default function Landing() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>Landing</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n </div>\r\n );\r\n}\r\n',
code: 'export default function Login() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>Login</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n </div>\r\n );\r\n}\r\n',
code: 'export default function Pricing() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>Pricing</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n </div>\r\n );\r\n}\r\n',
47
+
code: 'import { PricingPlan } from "./pricing-plan";\r\n\r\nexport default function Pricing() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>Pricing</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n <PricingPlan />\r\n </div>\r\n );\r\n}\r\n',
code: 'export default function Register() {\r\n return (\r\n <div className="min-h-screen">\r\n <h1>Register</h1>\r\n <p>\r\n This is a simple example of a Next.js app with a custom routing solution that uses\r\n the file system to define routes.\r\n </p>\r\n </div>\r\n );\r\n}\r\n',
0 commit comments