├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── jest.config.js ├── microservices ├── auth │ ├── .env │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── package.json │ ├── services │ │ ├── User.ts │ │ ├── functions │ │ │ ├── createUser.ts │ │ │ ├── getCurrentUser.ts │ │ │ ├── lambda.ts │ │ │ ├── private.ts │ │ │ └── public.ts │ │ ├── graphql │ │ │ └── schema.graphql │ │ ├── package.json │ │ ├── test │ │ │ └── sample.test.ts │ │ └── tsconfig.json │ ├── sst.json │ ├── stacks │ │ ├── CognitoStack.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── vitest.config.ts │ └── yarn.lock ├── notes │ ├── .env │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── package.json │ ├── services │ │ ├── Note.ts │ │ ├── functions │ │ │ ├── createNote.ts │ │ │ ├── getNote.ts │ │ │ └── lambda.ts │ │ ├── graphql │ │ │ └── schema.graphql │ │ ├── package.json │ │ ├── test │ │ │ └── sample.test.ts │ │ └── tsconfig.json │ ├── sst.json │ ├── stacks │ │ ├── NotesStack.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── vitest.config.ts │ └── yarn.lock └── web │ ├── .env │ ├── .gitignore │ ├── .vscode │ └── launch.json │ ├── frontend │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── fonts │ │ │ └── dm-sans │ │ │ │ ├── DMSans-Bold.ttf │ │ │ │ ├── DMSans-BoldItalic.ttf │ │ │ │ ├── DMSans-Italic.ttf │ │ │ │ ├── DMSans-Medium.ttf │ │ │ │ ├── DMSans-MediumItalic.ttf │ │ │ │ ├── DMSans-Regular.ttf │ │ │ │ └── OFL.txt │ │ ├── img │ │ │ ├── auth │ │ │ │ ├── auth.png │ │ │ │ └── banner.png │ │ │ ├── avatars │ │ │ │ ├── avatar1.png │ │ │ │ ├── avatar10.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar4.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── avatar6.png │ │ │ │ ├── avatar7.png │ │ │ │ ├── avatar8.png │ │ │ │ ├── avatar9.png │ │ │ │ └── avatarSimmmple.png │ │ │ ├── dashboards │ │ │ │ ├── Debit.png │ │ │ │ ├── balanceImg.png │ │ │ │ ├── elipse-light.png │ │ │ │ ├── fakeGraph.png │ │ │ │ └── usa.png │ │ │ ├── layout │ │ │ │ ├── Navbar.png │ │ │ │ └── logoWhite.png │ │ │ ├── nfts │ │ │ │ ├── Nft1.png │ │ │ │ ├── Nft2.png │ │ │ │ ├── Nft3.png │ │ │ │ ├── Nft4.png │ │ │ │ ├── Nft5.png │ │ │ │ ├── Nft6.png │ │ │ │ └── NftBanner1.png │ │ │ └── profile │ │ │ │ ├── Project1.png │ │ │ │ ├── Project2.png │ │ │ │ └── Project3.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── api │ │ │ └── ApolloClient.ts │ │ ├── components │ │ │ ├── calendar │ │ │ │ └── MiniCalendar.tsx │ │ │ ├── card │ │ │ │ ├── Card.tsx │ │ │ │ ├── Mastercard.tsx │ │ │ │ ├── Member.tsx │ │ │ │ ├── MiniStatistics.tsx │ │ │ │ └── NFT.tsx │ │ │ ├── charts │ │ │ │ ├── BarChart.tsx │ │ │ │ ├── LineAreaChart.tsx │ │ │ │ ├── LineChart.tsx │ │ │ │ └── PieChart.tsx │ │ │ ├── fields │ │ │ │ ├── InputField.tsx │ │ │ │ └── SwitchField.tsx │ │ │ ├── fixedPlugin │ │ │ │ └── FixedPlugin.tsx │ │ │ ├── footer │ │ │ │ ├── FooterAdmin.tsx │ │ │ │ └── FooterAuth.tsx │ │ │ ├── icons │ │ │ │ ├── IconBox.tsx │ │ │ │ └── Icons.tsx │ │ │ ├── image │ │ │ │ ├── Avatar.tsx │ │ │ │ └── Image.tsx │ │ │ ├── menu │ │ │ │ ├── ItemContent.tsx │ │ │ │ ├── MainMenu.tsx │ │ │ │ └── TransparentMenu.tsx │ │ │ ├── navbar │ │ │ │ ├── NavbarAdmin.tsx │ │ │ │ ├── NavbarLinksAdmin.tsx │ │ │ │ ├── NavbarRTL.tsx │ │ │ │ └── searchBar │ │ │ │ │ └── SearchBar.tsx │ │ │ ├── rtlProvider │ │ │ │ └── RtlProvider.tsx │ │ │ ├── scrollbar │ │ │ │ └── Scrollbar.tsx │ │ │ ├── separator │ │ │ │ └── Separator.tsx │ │ │ └── sidebar │ │ │ │ ├── Sidebar.tsx │ │ │ │ └── components │ │ │ │ ├── Brand.tsx │ │ │ │ ├── Content.tsx │ │ │ │ ├── Links.tsx │ │ │ │ └── SidebarCard.tsx │ │ ├── contexts │ │ │ ├── AuthGuard.tsx │ │ │ ├── SidebarContext.ts │ │ │ ├── useAmplifyUser.tsx │ │ │ └── useCurrentUser.tsx │ │ ├── img │ │ │ ├── auth │ │ │ │ ├── auth.png │ │ │ │ └── banner.png │ │ │ ├── avatars │ │ │ │ ├── avatar1.png │ │ │ │ ├── avatar10.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar4.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── avatar6.png │ │ │ │ ├── avatar7.png │ │ │ │ ├── avatar8.png │ │ │ │ ├── avatar9.png │ │ │ │ └── avatarSimmmple.png │ │ │ ├── dashboards │ │ │ │ ├── Debit.png │ │ │ │ ├── balanceImg.png │ │ │ │ ├── elipse-light.png │ │ │ │ ├── fakeGraph.png │ │ │ │ └── usa.png │ │ │ ├── layout │ │ │ │ ├── Navbar.png │ │ │ │ └── logoWhite.png │ │ │ ├── nfts │ │ │ │ ├── Nft1.png │ │ │ │ ├── Nft2.png │ │ │ │ ├── Nft3.png │ │ │ │ ├── Nft4.png │ │ │ │ ├── Nft5.png │ │ │ │ ├── Nft6.png │ │ │ │ └── NftBanner1.png │ │ │ └── profile │ │ │ │ ├── Project1.png │ │ │ │ ├── Project2.png │ │ │ │ └── Project3.png │ │ ├── layouts │ │ │ ├── admin │ │ │ │ └── index.tsx │ │ │ ├── auth │ │ │ │ └── Default.tsx │ │ │ └── rtl │ │ │ │ └── index.tsx │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ ├── _document.tsx │ │ │ ├── admin │ │ │ │ ├── data-tables.tsx │ │ │ │ ├── default.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── nft-marketplace.tsx │ │ │ │ └── profile.tsx │ │ │ ├── auth │ │ │ │ ├── index.tsx │ │ │ │ ├── sign-in.tsx │ │ │ │ └── sign-up.tsx │ │ │ ├── index.tsx │ │ │ └── rtl │ │ │ │ └── rtl-default.tsx │ │ ├── routes.tsx │ │ ├── styles │ │ │ ├── App.css │ │ │ ├── Avatar.module.css │ │ │ ├── Banner.module.css │ │ │ ├── Contact.css │ │ │ ├── Fonts.css │ │ │ └── MiniCalendar.css │ │ ├── theme │ │ │ ├── additions │ │ │ │ └── card │ │ │ │ │ └── card.ts │ │ │ ├── components │ │ │ │ ├── badge.ts │ │ │ │ ├── button.ts │ │ │ │ ├── input.ts │ │ │ │ ├── link.ts │ │ │ │ ├── progress.ts │ │ │ │ ├── slider.ts │ │ │ │ ├── switch.ts │ │ │ │ └── textarea.ts │ │ │ ├── foundations │ │ │ │ └── breakpoints.ts │ │ │ ├── styles.ts │ │ │ └── theme.tsx │ │ ├── types │ │ │ ├── images.d.ts │ │ │ ├── navigation.d.ts │ │ │ ├── react-table-config.d.ts │ │ │ └── stylis.d.ts │ │ ├── utils │ │ │ └── navigation.ts │ │ ├── variables │ │ │ └── charts.ts │ │ └── views │ │ │ └── admin │ │ │ ├── dataTables │ │ │ ├── components │ │ │ │ ├── CheckTable.tsx │ │ │ │ ├── ColumnsTable.tsx │ │ │ │ ├── ComplexTable.tsx │ │ │ │ └── DevelopmentTable.tsx │ │ │ └── variables │ │ │ │ ├── columnsData.ts │ │ │ │ ├── tableDataCheck.json │ │ │ │ ├── tableDataColumns.json │ │ │ │ ├── tableDataComplex.json │ │ │ │ └── tableDataDevelopment.json │ │ │ ├── default │ │ │ ├── components │ │ │ │ ├── CheckTable.tsx │ │ │ │ ├── ComplexTable.tsx │ │ │ │ ├── DailyTraffic.tsx │ │ │ │ ├── PieCard.tsx │ │ │ │ ├── Tasks.tsx │ │ │ │ ├── TotalSpent.tsx │ │ │ │ ├── UserActivity.tsx │ │ │ │ └── WeeklyRevenue.tsx │ │ │ └── variables │ │ │ │ ├── columnsData.ts │ │ │ │ ├── tableDataCheck.json │ │ │ │ └── tableDataComplex.json │ │ │ ├── marketplace │ │ │ ├── components │ │ │ │ ├── Banner.tsx │ │ │ │ ├── HistoryItem.tsx │ │ │ │ └── TableTopCreators.tsx │ │ │ └── variables │ │ │ │ ├── tableColumnsTopCreators.js │ │ │ │ └── tableDataTopCreators.json │ │ │ ├── profile │ │ │ └── components │ │ │ │ ├── Banner.tsx │ │ │ │ ├── Dropzone.tsx │ │ │ │ ├── General.tsx │ │ │ │ ├── Information.tsx │ │ │ │ ├── Notifications.tsx │ │ │ │ ├── Project.tsx │ │ │ │ ├── Projects.tsx │ │ │ │ ├── Storage.tsx │ │ │ │ └── Upload.tsx │ │ │ └── rtl │ │ │ ├── components │ │ │ ├── CheckTable.tsx │ │ │ ├── ComplexTable.tsx │ │ │ ├── DailyTraffic.tsx │ │ │ ├── PieCard.tsx │ │ │ ├── Tasks.tsx │ │ │ ├── TotalSpent.tsx │ │ │ ├── UserActivity.tsx │ │ │ └── WeeklyRevenue.tsx │ │ │ ├── index.tsx │ │ │ └── variables │ │ │ ├── columnsData.ts │ │ │ ├── tableDataCheck.json │ │ │ └── tableDataComplex.json │ ├── tsconfig.json │ └── yarn.lock │ ├── package-lock.json │ ├── package.json │ ├── services │ ├── functions │ │ └── lambda.ts │ ├── package.json │ ├── test │ │ └── sample.test.ts │ └── tsconfig.json │ ├── sst.json │ ├── stacks │ ├── WebStack.ts │ └── index.ts │ ├── tsconfig.json │ ├── vitest.config.ts │ └── yarn.lock ├── nodemon.json ├── package.json ├── src ├── index.spec.ts └── index.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/jest.config.js -------------------------------------------------------------------------------- /microservices/auth/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/.env -------------------------------------------------------------------------------- /microservices/auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/.gitignore -------------------------------------------------------------------------------- /microservices/auth/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/.vscode/launch.json -------------------------------------------------------------------------------- /microservices/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/package.json -------------------------------------------------------------------------------- /microservices/auth/services/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/User.ts -------------------------------------------------------------------------------- /microservices/auth/services/functions/createUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/functions/createUser.ts -------------------------------------------------------------------------------- /microservices/auth/services/functions/getCurrentUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/functions/getCurrentUser.ts -------------------------------------------------------------------------------- /microservices/auth/services/functions/lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/functions/lambda.ts -------------------------------------------------------------------------------- /microservices/auth/services/functions/private.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/functions/private.ts -------------------------------------------------------------------------------- /microservices/auth/services/functions/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/functions/public.ts -------------------------------------------------------------------------------- /microservices/auth/services/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/graphql/schema.graphql -------------------------------------------------------------------------------- /microservices/auth/services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/package.json -------------------------------------------------------------------------------- /microservices/auth/services/test/sample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/test/sample.test.ts -------------------------------------------------------------------------------- /microservices/auth/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/services/tsconfig.json -------------------------------------------------------------------------------- /microservices/auth/sst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/sst.json -------------------------------------------------------------------------------- /microservices/auth/stacks/CognitoStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/stacks/CognitoStack.ts -------------------------------------------------------------------------------- /microservices/auth/stacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/stacks/index.ts -------------------------------------------------------------------------------- /microservices/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/tsconfig.json -------------------------------------------------------------------------------- /microservices/auth/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/vitest.config.ts -------------------------------------------------------------------------------- /microservices/auth/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/auth/yarn.lock -------------------------------------------------------------------------------- /microservices/notes/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/.env -------------------------------------------------------------------------------- /microservices/notes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/.gitignore -------------------------------------------------------------------------------- /microservices/notes/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/.vscode/launch.json -------------------------------------------------------------------------------- /microservices/notes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/package.json -------------------------------------------------------------------------------- /microservices/notes/services/Note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/Note.ts -------------------------------------------------------------------------------- /microservices/notes/services/functions/createNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/functions/createNote.ts -------------------------------------------------------------------------------- /microservices/notes/services/functions/getNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/functions/getNote.ts -------------------------------------------------------------------------------- /microservices/notes/services/functions/lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/functions/lambda.ts -------------------------------------------------------------------------------- /microservices/notes/services/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/graphql/schema.graphql -------------------------------------------------------------------------------- /microservices/notes/services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/package.json -------------------------------------------------------------------------------- /microservices/notes/services/test/sample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/test/sample.test.ts -------------------------------------------------------------------------------- /microservices/notes/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/services/tsconfig.json -------------------------------------------------------------------------------- /microservices/notes/sst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/sst.json -------------------------------------------------------------------------------- /microservices/notes/stacks/NotesStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/stacks/NotesStack.ts -------------------------------------------------------------------------------- /microservices/notes/stacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/stacks/index.ts -------------------------------------------------------------------------------- /microservices/notes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/tsconfig.json -------------------------------------------------------------------------------- /microservices/notes/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/vitest.config.ts -------------------------------------------------------------------------------- /microservices/notes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/notes/yarn.lock -------------------------------------------------------------------------------- /microservices/web/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/.env -------------------------------------------------------------------------------- /microservices/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/.gitignore -------------------------------------------------------------------------------- /microservices/web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/.vscode/launch.json -------------------------------------------------------------------------------- /microservices/web/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/.eslintrc.json -------------------------------------------------------------------------------- /microservices/web/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/.gitignore -------------------------------------------------------------------------------- /microservices/web/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/.prettierrc -------------------------------------------------------------------------------- /microservices/web/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/README.md -------------------------------------------------------------------------------- /microservices/web/frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/next.config.js -------------------------------------------------------------------------------- /microservices/web/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/package.json -------------------------------------------------------------------------------- /microservices/web/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/favicon.ico -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/DMSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/DMSans-Bold.ttf -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/DMSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/DMSans-BoldItalic.ttf -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/DMSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/DMSans-Italic.ttf -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/DMSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/DMSans-Medium.ttf -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/DMSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/DMSans-MediumItalic.ttf -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/DMSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/DMSans-Regular.ttf -------------------------------------------------------------------------------- /microservices/web/frontend/public/fonts/dm-sans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/fonts/dm-sans/OFL.txt -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/auth/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/auth/auth.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/auth/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/auth/banner.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar1.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar10.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar2.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar3.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar4.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar5.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar6.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar7.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar8.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatar9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatar9.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/avatars/avatarSimmmple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/avatars/avatarSimmmple.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/dashboards/Debit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/dashboards/Debit.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/dashboards/balanceImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/dashboards/balanceImg.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/dashboards/elipse-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/dashboards/elipse-light.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/dashboards/fakeGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/dashboards/fakeGraph.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/dashboards/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/dashboards/usa.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/layout/Navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/layout/Navbar.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/layout/logoWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/layout/logoWhite.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/Nft1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/Nft1.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/Nft2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/Nft2.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/Nft3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/Nft3.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/Nft4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/Nft4.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/Nft5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/Nft5.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/Nft6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/Nft6.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/nfts/NftBanner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/nfts/NftBanner1.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/profile/Project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/profile/Project1.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/profile/Project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/profile/Project2.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/img/profile/Project3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/img/profile/Project3.png -------------------------------------------------------------------------------- /microservices/web/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/public/manifest.json -------------------------------------------------------------------------------- /microservices/web/frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | Sitemap: https://simmmple.com -------------------------------------------------------------------------------- /microservices/web/frontend/src/api/ApolloClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/api/ApolloClient.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/calendar/MiniCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/calendar/MiniCalendar.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/card/Card.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/card/Mastercard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/card/Mastercard.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/card/Member.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/card/Member.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/card/MiniStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/card/MiniStatistics.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/card/NFT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/card/NFT.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/charts/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/charts/BarChart.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/charts/LineAreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/charts/LineAreaChart.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/charts/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/charts/LineChart.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/charts/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/charts/PieChart.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/fields/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/fields/InputField.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/fields/SwitchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/fields/SwitchField.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/fixedPlugin/FixedPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/fixedPlugin/FixedPlugin.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/footer/FooterAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/footer/FooterAdmin.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/footer/FooterAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/footer/FooterAuth.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/icons/IconBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/icons/IconBox.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/icons/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/icons/Icons.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/image/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/image/Avatar.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/image/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/image/Image.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/menu/ItemContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/menu/ItemContent.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/menu/MainMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/menu/MainMenu.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/menu/TransparentMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/menu/TransparentMenu.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/navbar/NavbarAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/navbar/NavbarAdmin.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/navbar/NavbarLinksAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/navbar/NavbarLinksAdmin.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/navbar/NavbarRTL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/navbar/NavbarRTL.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/navbar/searchBar/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/navbar/searchBar/SearchBar.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/rtlProvider/RtlProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/rtlProvider/RtlProvider.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/scrollbar/Scrollbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/scrollbar/Scrollbar.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/separator/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/separator/Separator.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/sidebar/components/Brand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/sidebar/components/Brand.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/sidebar/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/sidebar/components/Content.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/sidebar/components/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/sidebar/components/Links.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/components/sidebar/components/SidebarCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/components/sidebar/components/SidebarCard.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/contexts/AuthGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/contexts/AuthGuard.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/contexts/SidebarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/contexts/SidebarContext.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/contexts/useAmplifyUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/contexts/useAmplifyUser.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/contexts/useCurrentUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/contexts/useCurrentUser.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/auth/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/auth/auth.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/auth/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/auth/banner.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar1.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar10.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar2.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar3.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar4.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar5.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar6.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar7.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar8.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatar9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatar9.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/avatars/avatarSimmmple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/avatars/avatarSimmmple.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/dashboards/Debit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/dashboards/Debit.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/dashboards/balanceImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/dashboards/balanceImg.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/dashboards/elipse-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/dashboards/elipse-light.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/dashboards/fakeGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/dashboards/fakeGraph.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/dashboards/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/dashboards/usa.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/layout/Navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/layout/Navbar.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/layout/logoWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/layout/logoWhite.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/Nft1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/Nft1.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/Nft2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/Nft2.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/Nft3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/Nft3.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/Nft4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/Nft4.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/Nft5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/Nft5.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/Nft6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/Nft6.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/nfts/NftBanner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/nfts/NftBanner1.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/profile/Project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/profile/Project1.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/profile/Project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/profile/Project2.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/img/profile/Project3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/img/profile/Project3.png -------------------------------------------------------------------------------- /microservices/web/frontend/src/layouts/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/layouts/admin/index.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/layouts/auth/Default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/layouts/auth/Default.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/layouts/rtl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/layouts/rtl/index.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/_app.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/_document.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/admin/data-tables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/admin/data-tables.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/admin/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/admin/default.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/admin/index.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/admin/nft-marketplace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/admin/nft-marketplace.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/admin/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/admin/profile.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/auth/index.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/auth/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/auth/sign-in.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/auth/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/auth/sign-up.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/pages/rtl/rtl-default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/pages/rtl/rtl-default.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/routes.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/styles/App.css -------------------------------------------------------------------------------- /microservices/web/frontend/src/styles/Avatar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/styles/Avatar.module.css -------------------------------------------------------------------------------- /microservices/web/frontend/src/styles/Banner.module.css: -------------------------------------------------------------------------------- 1 | .bgImage { 2 | background-image: url('/img/nfts/NftBanner1.png'); 3 | } -------------------------------------------------------------------------------- /microservices/web/frontend/src/styles/Contact.css: -------------------------------------------------------------------------------- 1 | form { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /microservices/web/frontend/src/styles/Fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/styles/Fonts.css -------------------------------------------------------------------------------- /microservices/web/frontend/src/styles/MiniCalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/styles/MiniCalendar.css -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/additions/card/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/additions/card/card.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/badge.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/button.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/input.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/link.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/progress.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/slider.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/switch.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/components/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/components/textarea.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/foundations/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/foundations/breakpoints.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/styles.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/theme/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/theme/theme.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/types/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/types/images.d.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/types/navigation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/types/navigation.d.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/types/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/types/react-table-config.d.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/types/stylis.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/types/stylis.d.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/utils/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/utils/navigation.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/variables/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/variables/charts.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/components/CheckTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/components/CheckTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/components/ColumnsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/components/ColumnsTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/components/ComplexTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/components/ComplexTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/components/DevelopmentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/components/DevelopmentTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/variables/columnsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/variables/columnsData.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/variables/tableDataCheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/variables/tableDataCheck.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/variables/tableDataColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/variables/tableDataColumns.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/variables/tableDataComplex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/variables/tableDataComplex.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/dataTables/variables/tableDataDevelopment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/dataTables/variables/tableDataDevelopment.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/CheckTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/CheckTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/ComplexTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/ComplexTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/DailyTraffic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/DailyTraffic.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/PieCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/PieCard.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/Tasks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/Tasks.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/TotalSpent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/TotalSpent.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/UserActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/UserActivity.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/components/WeeklyRevenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/components/WeeklyRevenue.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/variables/columnsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/variables/columnsData.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/variables/tableDataCheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/variables/tableDataCheck.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/default/variables/tableDataComplex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/default/variables/tableDataComplex.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/marketplace/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/marketplace/components/Banner.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/marketplace/components/HistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/marketplace/components/HistoryItem.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/marketplace/components/TableTopCreators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/marketplace/components/TableTopCreators.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/marketplace/variables/tableColumnsTopCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/marketplace/variables/tableColumnsTopCreators.js -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/marketplace/variables/tableDataTopCreators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/marketplace/variables/tableDataTopCreators.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Banner.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Dropzone.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/General.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Information.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Notifications.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Project.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Projects.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Storage.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/profile/components/Upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/profile/components/Upload.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/CheckTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/CheckTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/ComplexTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/ComplexTable.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/DailyTraffic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/DailyTraffic.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/PieCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/PieCard.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/Tasks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/Tasks.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/TotalSpent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/TotalSpent.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/UserActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/UserActivity.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/components/WeeklyRevenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/components/WeeklyRevenue.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/index.tsx -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/variables/columnsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/variables/columnsData.ts -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/variables/tableDataCheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/variables/tableDataCheck.json -------------------------------------------------------------------------------- /microservices/web/frontend/src/views/admin/rtl/variables/tableDataComplex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/src/views/admin/rtl/variables/tableDataComplex.json -------------------------------------------------------------------------------- /microservices/web/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/tsconfig.json -------------------------------------------------------------------------------- /microservices/web/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/frontend/yarn.lock -------------------------------------------------------------------------------- /microservices/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/package-lock.json -------------------------------------------------------------------------------- /microservices/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/package.json -------------------------------------------------------------------------------- /microservices/web/services/functions/lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/services/functions/lambda.ts -------------------------------------------------------------------------------- /microservices/web/services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/services/package.json -------------------------------------------------------------------------------- /microservices/web/services/test/sample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/services/test/sample.test.ts -------------------------------------------------------------------------------- /microservices/web/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/services/tsconfig.json -------------------------------------------------------------------------------- /microservices/web/sst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/sst.json -------------------------------------------------------------------------------- /microservices/web/stacks/WebStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/stacks/WebStack.ts -------------------------------------------------------------------------------- /microservices/web/stacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/stacks/index.ts -------------------------------------------------------------------------------- /microservices/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/tsconfig.json -------------------------------------------------------------------------------- /microservices/web/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/vitest.config.ts -------------------------------------------------------------------------------- /microservices/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/microservices/web/yarn.lock -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/package.json -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkjones/aws-saas-seed/HEAD/yarn.lock --------------------------------------------------------------------------------