flndrn 54c3812553 fix: Studio typecheck passes (0 errors) 2 mesi fa
..
account c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
api 54c3812553 fix: Studio typecheck passes (0 errors) 2 mesi fa
cli c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
integrations 54c3812553 fix: Studio typecheck passes (0 errors) 2 mesi fa
new 54c3812553 fix: Studio typecheck passes (0 errors) 2 mesi fa
org c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
partners c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
project 54c3812553 fix: Studio typecheck passes (0 errors) 2 mesi fa
support c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
404.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
500.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
README.md c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
_app.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
_document.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
_error.jsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
authorize.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
aws-marketplace-onboarding.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
claim-project.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
forgot-password-mfa.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
forgot-password.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
join.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
logout.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
maintenance.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
organizations.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
redeem.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
reset-password.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
sign-in-mfa.tsx 54c3812553 fix: Studio typecheck passes (0 errors) 2 mesi fa
sign-in-partner.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
sign-in-sso.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
sign-in.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa
sign-up.tsx c5aa765f6b feat(studio): fork supabase studio + rebrand to briven (phases 0-5.1) 3 mesi fa

README.md

Writing pages

Rough guidelines

  • Try to break down your pages into smaller building blocks - components which are tightly coupled to a page can be placed within the folder components/interfaces/xxx/... (Refer to the README.md under the components folder)
  • Keep to using useState hooks for any UI related logic, do not create MobX local stores to handle UI logic.

Template for building pages

import { NextPage } from 'next'
import { withAuth } from 'hooks/misc/withAuth'

// Import the corresponding layout based on the page
import { Layout } from 'components/layouts'

// Import the main building blocks of the page
import { ... } from 'components/interfaces/xxx'

// Import reusable UI components if needed
import { ... } from 'components/ui/xxx'

// Name your page accordingly
const Page: NextPage = () => {

  return (
    <Layout>
      <div>Page content</div>
    </Layout>
  )
}

export default withAuth(Page)