├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierrc.json ├── README.md ├── apps ├── next-app │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── deploymentTargetDropDown.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── capacitor.build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── getcapacitor │ │ │ │ │ └── myapp │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── next │ │ │ │ │ │ └── supertokens │ │ │ │ │ │ └── app │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-land-hdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-land-mdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-land-xhdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-land-xxhdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-land-xxxhdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-port-hdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-port-mdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-port-xhdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-port-xxhdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-port-xxxhdpi │ │ │ │ │ └── splash.png │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── splash.png │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── file_paths.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── getcapacitor │ │ │ │ └── myapp │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── capacitor.settings.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── variables.gradle │ ├── capacitor.config.ts │ ├── config │ │ ├── appInfo.js │ │ └── frontendConfig.ts │ ├── ios │ │ ├── .gitignore │ │ └── App │ │ │ ├── App.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── App.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── App │ │ │ ├── App.entitlements │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Splash.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── splash-2732x2732-1.png │ │ │ │ │ ├── splash-2732x2732-2.png │ │ │ │ │ └── splash-2732x2732.png │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ └── Info.plist │ │ │ ├── Podfile │ │ │ └── Podfile.lock │ ├── jest.config.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── vercel.svg │ ├── src │ │ ├── app │ │ │ ├── auth │ │ │ │ └── callback │ │ │ │ │ ├── apple │ │ │ │ │ └── page.tsx │ │ │ │ │ └── google │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── login-result │ │ │ │ └── page.tsx │ │ │ ├── login │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── register │ │ │ │ └── page.tsx │ │ │ └── ui │ │ │ │ └── supertokensProvider.tsx │ │ └── lib │ │ │ ├── add.test.ts │ │ │ └── add.ts │ ├── styles │ │ └── globals.css │ ├── tailwind.config.js │ └── tsconfig.json └── next-web │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── config │ ├── appInfo.js │ ├── backendConfig.ts │ └── frontendConfig.ts │ ├── jest.config.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── .well-known │ │ └── apple-app-site-association │ ├── favicon.ico │ └── vercel.svg │ ├── src │ ├── app │ │ ├── api │ │ │ └── auth │ │ │ │ └── [[...path]] │ │ │ │ ├── cors.ts │ │ │ │ └── route.ts │ │ ├── auth │ │ │ └── callback │ │ │ │ ├── apple │ │ │ │ └── page.tsx │ │ │ │ └── google │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── lib │ │ │ └── sessionUtils.ts │ │ ├── login-result │ │ │ └── page.tsx │ │ ├── login │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── register │ │ │ └── page.tsx │ │ └── ui │ │ │ └── supertokensProvider.tsx │ └── pages │ │ └── api │ │ └── auth │ │ └── redirect.ts │ ├── styles │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── jest.config.js ├── package.json ├── packages ├── app │ └── package.json ├── config │ ├── eslint-next.js │ ├── eslint-server.js │ ├── jest-common.js │ ├── jest-next.js │ ├── jest-server.js │ ├── package.json │ ├── tailwind.config.app.js │ ├── tailwind.config.base.js │ └── tailwind.config.web.js ├── lib │ ├── .eslintrc.js │ ├── hooks │ │ ├── useConfirmModalStore.ts │ │ └── useEditingState.ts │ ├── next-apps │ │ └── hooks │ │ │ ├── signout.ts │ │ │ └── useScreenType.ts │ ├── package.json │ ├── tsconfig.json │ └── utils │ │ ├── capacitor.ts │ │ ├── capacitorCookieHandler.ts │ │ ├── common.types.ts │ │ ├── config.ts │ │ ├── cors.ts │ │ ├── handleRegister.ts │ │ ├── logError.ts │ │ ├── navLinks.ts │ │ ├── supertokensNodeUtilities.ts │ │ ├── supertokensUtilities.ts │ │ └── util.ts ├── tsconfig │ ├── README.md │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── server.json └── ui │ ├── .eslintrc.js │ ├── Button.tsx │ ├── components │ ├── AuthLayout.tsx │ ├── Button.tsx │ ├── ButtonGroup.tsx │ ├── ButtonLink.tsx │ ├── ButtonSpinner.tsx │ ├── ButtonText.tsx │ ├── ConfirmModal │ │ └── ConfirmModal.tsx │ ├── Container.tsx │ ├── Error.tsx │ ├── Form │ │ ├── CustomRadioGroup │ │ │ ├── CustomRadioGroup.tsx │ │ │ └── RadioGroupOptionDouble.tsx │ │ ├── Editable │ │ │ └── SettingsEditableTextForm.tsx │ │ └── SingleFieldTextForm.tsx │ ├── Hero.tsx │ ├── Input.tsx │ ├── InputErrorMsg.tsx │ ├── InputField.tsx │ ├── Label.tsx │ ├── LoadingSpinner.tsx │ ├── LoadingSpinnerPage.tsx │ ├── LoginResult.tsx │ ├── MenuButton.tsx │ ├── MenuLink.tsx │ ├── Modal.tsx │ ├── ProfileDropdown.tsx │ ├── ReturnBreadcrumb.tsx │ ├── SocialButtons.tsx │ ├── Text.tsx │ ├── TextDivider.tsx │ ├── Toast │ │ └── toast.tsx │ ├── TopNav │ │ ├── MobileTopNavWithReturn.tsx │ │ ├── ProfileNavBar.tsx │ │ └── TopNavDesktop.tsx │ └── TryRefreshClientComponent.tsx │ ├── containers │ ├── Auth │ │ └── NoAccountLayout.tsx │ ├── AuthCallback │ │ └── AuthCallback.tsx │ ├── Forms │ │ ├── LoginForm.tsx │ │ └── RegisterForm.tsx │ ├── Layout │ │ └── Layout.tsx │ ├── Login │ │ ├── Login.tsx │ │ └── StackedSocialButtons.tsx │ ├── Overview │ │ └── Overview.tsx │ ├── Register │ │ └── Register.tsx │ └── Settings │ │ └── ProfileInformation.tsx │ ├── icons │ ├── AppleIcon.tsx │ ├── FacebookIcon.tsx │ ├── GithubIcon.tsx │ └── GoogleIcon.tsx │ ├── images │ ├── avatars │ │ ├── avatar-1.png │ │ ├── avatar-2.png │ │ ├── avatar-3.png │ │ ├── avatar-4.png │ │ └── avatar-5.png │ ├── background-auth.jpg │ ├── background-call-to-action.jpg │ ├── background-faqs.jpg │ ├── background-features.jpg │ ├── logos │ │ ├── laravel.svg │ │ ├── mirage.svg │ │ ├── statamic.svg │ │ ├── statickit.svg │ │ ├── transistor.svg │ │ └── tuple.svg │ └── screenshots │ │ ├── contacts.png │ │ ├── expenses.png │ │ ├── inventory.png │ │ ├── payroll.png │ │ ├── profit-loss.png │ │ ├── reporting.png │ │ └── vat-returns.png │ ├── index.tsx │ ├── package.json │ ├── postcss.config.js │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── turbo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run test && npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/README.md -------------------------------------------------------------------------------- /apps/next-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/.eslintrc.js -------------------------------------------------------------------------------- /apps/next-app/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /apps/next-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/README.md -------------------------------------------------------------------------------- /apps/next-app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/.gitignore -------------------------------------------------------------------------------- /apps/next-app/android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /apps/next-app/android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/.idea/compiler.xml -------------------------------------------------------------------------------- /apps/next-app/android/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /apps/next-app/android/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /apps/next-app/android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/.idea/misc.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/.gitignore -------------------------------------------------------------------------------- /apps/next-app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/build.gradle -------------------------------------------------------------------------------- /apps/next-app/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /apps/next-app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /apps/next-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/java/next/supertokens/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/java/next/supertokens/app/MainActivity.java -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /apps/next-app/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /apps/next-app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/build.gradle -------------------------------------------------------------------------------- /apps/next-app/android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /apps/next-app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/gradle.properties -------------------------------------------------------------------------------- /apps/next-app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /apps/next-app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /apps/next-app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/gradlew -------------------------------------------------------------------------------- /apps/next-app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/gradlew.bat -------------------------------------------------------------------------------- /apps/next-app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/settings.gradle -------------------------------------------------------------------------------- /apps/next-app/android/variables.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/android/variables.gradle -------------------------------------------------------------------------------- /apps/next-app/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/capacitor.config.ts -------------------------------------------------------------------------------- /apps/next-app/config/appInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/config/appInfo.js -------------------------------------------------------------------------------- /apps/next-app/config/frontendConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/config/frontendConfig.ts -------------------------------------------------------------------------------- /apps/next-app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/.gitignore -------------------------------------------------------------------------------- /apps/next-app/ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/next-app/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/next-app/ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/next-app/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/App.entitlements -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /apps/next-app/ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/App/Info.plist -------------------------------------------------------------------------------- /apps/next-app/ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/Podfile -------------------------------------------------------------------------------- /apps/next-app/ios/App/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/ios/App/Podfile.lock -------------------------------------------------------------------------------- /apps/next-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/jest.config.js -------------------------------------------------------------------------------- /apps/next-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/next-env.d.ts -------------------------------------------------------------------------------- /apps/next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/next.config.js -------------------------------------------------------------------------------- /apps/next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/package.json -------------------------------------------------------------------------------- /apps/next-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/postcss.config.js -------------------------------------------------------------------------------- /apps/next-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/public/favicon.ico -------------------------------------------------------------------------------- /apps/next-app/public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/next-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/public/vercel.svg -------------------------------------------------------------------------------- /apps/next-app/src/app/auth/callback/apple/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/auth/callback/apple/page.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/auth/callback/google/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/auth/callback/google/page.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/login-result/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/login-result/page.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/login/page.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/page.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/register/page.tsx -------------------------------------------------------------------------------- /apps/next-app/src/app/ui/supertokensProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/app/ui/supertokensProvider.tsx -------------------------------------------------------------------------------- /apps/next-app/src/lib/add.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/lib/add.test.ts -------------------------------------------------------------------------------- /apps/next-app/src/lib/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/src/lib/add.ts -------------------------------------------------------------------------------- /apps/next-app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/styles/globals.css -------------------------------------------------------------------------------- /apps/next-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/tailwind.config.js -------------------------------------------------------------------------------- /apps/next-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-app/tsconfig.json -------------------------------------------------------------------------------- /apps/next-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/next-web/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /apps/next-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/README.md -------------------------------------------------------------------------------- /apps/next-web/config/appInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/config/appInfo.js -------------------------------------------------------------------------------- /apps/next-web/config/backendConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/config/backendConfig.ts -------------------------------------------------------------------------------- /apps/next-web/config/frontendConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/config/frontendConfig.ts -------------------------------------------------------------------------------- /apps/next-web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/jest.config.js -------------------------------------------------------------------------------- /apps/next-web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/next-env.d.ts -------------------------------------------------------------------------------- /apps/next-web/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/next.config.js -------------------------------------------------------------------------------- /apps/next-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/package.json -------------------------------------------------------------------------------- /apps/next-web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/postcss.config.js -------------------------------------------------------------------------------- /apps/next-web/public/.well-known/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/public/.well-known/apple-app-site-association -------------------------------------------------------------------------------- /apps/next-web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/public/favicon.ico -------------------------------------------------------------------------------- /apps/next-web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/public/vercel.svg -------------------------------------------------------------------------------- /apps/next-web/src/app/api/auth/[[...path]]/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/api/auth/[[...path]]/cors.ts -------------------------------------------------------------------------------- /apps/next-web/src/app/api/auth/[[...path]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/api/auth/[[...path]]/route.ts -------------------------------------------------------------------------------- /apps/next-web/src/app/auth/callback/apple/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/auth/callback/apple/page.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/auth/callback/google/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/auth/callback/google/page.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/lib/sessionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/lib/sessionUtils.ts -------------------------------------------------------------------------------- /apps/next-web/src/app/login-result/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/login-result/page.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/login/page.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/register/page.tsx -------------------------------------------------------------------------------- /apps/next-web/src/app/ui/supertokensProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/app/ui/supertokensProvider.tsx -------------------------------------------------------------------------------- /apps/next-web/src/pages/api/auth/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/src/pages/api/auth/redirect.ts -------------------------------------------------------------------------------- /apps/next-web/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/styles/globals.css -------------------------------------------------------------------------------- /apps/next-web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/tailwind.config.js -------------------------------------------------------------------------------- /apps/next-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/tsconfig.json -------------------------------------------------------------------------------- /apps/next-web/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/apps/next-web/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/package.json -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/config/eslint-next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/eslint-next.js -------------------------------------------------------------------------------- /packages/config/eslint-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/eslint-server.js -------------------------------------------------------------------------------- /packages/config/jest-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/jest-common.js -------------------------------------------------------------------------------- /packages/config/jest-next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/jest-next.js -------------------------------------------------------------------------------- /packages/config/jest-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/jest-server.js -------------------------------------------------------------------------------- /packages/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/package.json -------------------------------------------------------------------------------- /packages/config/tailwind.config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/tailwind.config.app.js -------------------------------------------------------------------------------- /packages/config/tailwind.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/tailwind.config.base.js -------------------------------------------------------------------------------- /packages/config/tailwind.config.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/config/tailwind.config.web.js -------------------------------------------------------------------------------- /packages/lib/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/.eslintrc.js -------------------------------------------------------------------------------- /packages/lib/hooks/useConfirmModalStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/hooks/useConfirmModalStore.ts -------------------------------------------------------------------------------- /packages/lib/hooks/useEditingState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/hooks/useEditingState.ts -------------------------------------------------------------------------------- /packages/lib/next-apps/hooks/signout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/next-apps/hooks/signout.ts -------------------------------------------------------------------------------- /packages/lib/next-apps/hooks/useScreenType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/next-apps/hooks/useScreenType.ts -------------------------------------------------------------------------------- /packages/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/package.json -------------------------------------------------------------------------------- /packages/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/tsconfig.json -------------------------------------------------------------------------------- /packages/lib/utils/capacitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/capacitor.ts -------------------------------------------------------------------------------- /packages/lib/utils/capacitorCookieHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/capacitorCookieHandler.ts -------------------------------------------------------------------------------- /packages/lib/utils/common.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/common.types.ts -------------------------------------------------------------------------------- /packages/lib/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/config.ts -------------------------------------------------------------------------------- /packages/lib/utils/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/cors.ts -------------------------------------------------------------------------------- /packages/lib/utils/handleRegister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/handleRegister.ts -------------------------------------------------------------------------------- /packages/lib/utils/logError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/logError.ts -------------------------------------------------------------------------------- /packages/lib/utils/navLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/navLinks.ts -------------------------------------------------------------------------------- /packages/lib/utils/supertokensNodeUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/supertokensNodeUtilities.ts -------------------------------------------------------------------------------- /packages/lib/utils/supertokensUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/supertokensUtilities.ts -------------------------------------------------------------------------------- /packages/lib/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/lib/utils/util.ts -------------------------------------------------------------------------------- /packages/tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/tsconfig/README.md -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/tsconfig/nextjs.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/tsconfig/server.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /packages/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/Button.tsx -------------------------------------------------------------------------------- /packages/ui/components/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/AuthLayout.tsx -------------------------------------------------------------------------------- /packages/ui/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Button.tsx -------------------------------------------------------------------------------- /packages/ui/components/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ButtonGroup.tsx -------------------------------------------------------------------------------- /packages/ui/components/ButtonLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ButtonLink.tsx -------------------------------------------------------------------------------- /packages/ui/components/ButtonSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ButtonSpinner.tsx -------------------------------------------------------------------------------- /packages/ui/components/ButtonText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ButtonText.tsx -------------------------------------------------------------------------------- /packages/ui/components/ConfirmModal/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ConfirmModal/ConfirmModal.tsx -------------------------------------------------------------------------------- /packages/ui/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Container.tsx -------------------------------------------------------------------------------- /packages/ui/components/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Error.tsx -------------------------------------------------------------------------------- /packages/ui/components/Form/CustomRadioGroup/CustomRadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Form/CustomRadioGroup/CustomRadioGroup.tsx -------------------------------------------------------------------------------- /packages/ui/components/Form/CustomRadioGroup/RadioGroupOptionDouble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Form/CustomRadioGroup/RadioGroupOptionDouble.tsx -------------------------------------------------------------------------------- /packages/ui/components/Form/Editable/SettingsEditableTextForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Form/Editable/SettingsEditableTextForm.tsx -------------------------------------------------------------------------------- /packages/ui/components/Form/SingleFieldTextForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Form/SingleFieldTextForm.tsx -------------------------------------------------------------------------------- /packages/ui/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Hero.tsx -------------------------------------------------------------------------------- /packages/ui/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Input.tsx -------------------------------------------------------------------------------- /packages/ui/components/InputErrorMsg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/InputErrorMsg.tsx -------------------------------------------------------------------------------- /packages/ui/components/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/InputField.tsx -------------------------------------------------------------------------------- /packages/ui/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Label.tsx -------------------------------------------------------------------------------- /packages/ui/components/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/LoadingSpinner.tsx -------------------------------------------------------------------------------- /packages/ui/components/LoadingSpinnerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/LoadingSpinnerPage.tsx -------------------------------------------------------------------------------- /packages/ui/components/LoginResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/LoginResult.tsx -------------------------------------------------------------------------------- /packages/ui/components/MenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/MenuButton.tsx -------------------------------------------------------------------------------- /packages/ui/components/MenuLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/MenuLink.tsx -------------------------------------------------------------------------------- /packages/ui/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Modal.tsx -------------------------------------------------------------------------------- /packages/ui/components/ProfileDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ProfileDropdown.tsx -------------------------------------------------------------------------------- /packages/ui/components/ReturnBreadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/ReturnBreadcrumb.tsx -------------------------------------------------------------------------------- /packages/ui/components/SocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/SocialButtons.tsx -------------------------------------------------------------------------------- /packages/ui/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Text.tsx -------------------------------------------------------------------------------- /packages/ui/components/TextDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/TextDivider.tsx -------------------------------------------------------------------------------- /packages/ui/components/Toast/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/Toast/toast.tsx -------------------------------------------------------------------------------- /packages/ui/components/TopNav/MobileTopNavWithReturn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/TopNav/MobileTopNavWithReturn.tsx -------------------------------------------------------------------------------- /packages/ui/components/TopNav/ProfileNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/TopNav/ProfileNavBar.tsx -------------------------------------------------------------------------------- /packages/ui/components/TopNav/TopNavDesktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/TopNav/TopNavDesktop.tsx -------------------------------------------------------------------------------- /packages/ui/components/TryRefreshClientComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/components/TryRefreshClientComponent.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Auth/NoAccountLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Auth/NoAccountLayout.tsx -------------------------------------------------------------------------------- /packages/ui/containers/AuthCallback/AuthCallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/AuthCallback/AuthCallback.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Forms/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Forms/LoginForm.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Forms/RegisterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Forms/RegisterForm.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Layout/Layout.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Login/Login.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Login/StackedSocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Login/StackedSocialButtons.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Overview/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Overview/Overview.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Register/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Register/Register.tsx -------------------------------------------------------------------------------- /packages/ui/containers/Settings/ProfileInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/containers/Settings/ProfileInformation.tsx -------------------------------------------------------------------------------- /packages/ui/icons/AppleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/icons/AppleIcon.tsx -------------------------------------------------------------------------------- /packages/ui/icons/FacebookIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/icons/FacebookIcon.tsx -------------------------------------------------------------------------------- /packages/ui/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /packages/ui/icons/GoogleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/icons/GoogleIcon.tsx -------------------------------------------------------------------------------- /packages/ui/images/avatars/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/avatars/avatar-1.png -------------------------------------------------------------------------------- /packages/ui/images/avatars/avatar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/avatars/avatar-2.png -------------------------------------------------------------------------------- /packages/ui/images/avatars/avatar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/avatars/avatar-3.png -------------------------------------------------------------------------------- /packages/ui/images/avatars/avatar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/avatars/avatar-4.png -------------------------------------------------------------------------------- /packages/ui/images/avatars/avatar-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/avatars/avatar-5.png -------------------------------------------------------------------------------- /packages/ui/images/background-auth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/background-auth.jpg -------------------------------------------------------------------------------- /packages/ui/images/background-call-to-action.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/background-call-to-action.jpg -------------------------------------------------------------------------------- /packages/ui/images/background-faqs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/background-faqs.jpg -------------------------------------------------------------------------------- /packages/ui/images/background-features.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/background-features.jpg -------------------------------------------------------------------------------- /packages/ui/images/logos/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/logos/laravel.svg -------------------------------------------------------------------------------- /packages/ui/images/logos/mirage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/logos/mirage.svg -------------------------------------------------------------------------------- /packages/ui/images/logos/statamic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/logos/statamic.svg -------------------------------------------------------------------------------- /packages/ui/images/logos/statickit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/logos/statickit.svg -------------------------------------------------------------------------------- /packages/ui/images/logos/transistor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/logos/transistor.svg -------------------------------------------------------------------------------- /packages/ui/images/logos/tuple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/logos/tuple.svg -------------------------------------------------------------------------------- /packages/ui/images/screenshots/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/contacts.png -------------------------------------------------------------------------------- /packages/ui/images/screenshots/expenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/expenses.png -------------------------------------------------------------------------------- /packages/ui/images/screenshots/inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/inventory.png -------------------------------------------------------------------------------- /packages/ui/images/screenshots/payroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/payroll.png -------------------------------------------------------------------------------- /packages/ui/images/screenshots/profit-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/profit-loss.png -------------------------------------------------------------------------------- /packages/ui/images/screenshots/reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/reporting.png -------------------------------------------------------------------------------- /packages/ui/images/screenshots/vat-returns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/images/screenshots/vat-returns.png -------------------------------------------------------------------------------- /packages/ui/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Button"; 2 | -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/postcss.config.js -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobSchilderr/nextjs-native-starter/HEAD/turbo.json --------------------------------------------------------------------------------