├── .babelrc ├── .env ├── .github ├── config.yml ├── stale.yml └── test_checker.yml ├── .gitignore ├── .husky ├── .gitignore ├── pre-commit └── pre-push ├── .lintstagedrc ├── .prettierrc ├── .vercelignore ├── .vscode ├── extensions.json └── settings.sample.json ├── README.md ├── __tests__ ├── chance.js ├── components │ └── SanityCheck.test.js ├── mocks │ ├── MswProvider.tsx │ ├── browser.js │ ├── handlers │ │ ├── graphql │ │ │ └── query_users_me.js │ │ ├── index.js │ │ ├── rest │ │ │ └── mswping.js │ │ └── storage.js │ ├── index.js │ └── server.js ├── stubs │ ├── buildUser.js │ ├── index.js │ ├── useStubs.ts │ └── utils.js ├── styleMock.js └── test-utils.js ├── apollo.config.js ├── checkly ├── snippets │ ├── publicPages.js │ ├── takeScreenshot.js │ ├── takeScreenshots.js │ ├── viewports_desktop.js │ ├── viewports_mobile.js │ └── wait.js └── visual_tests │ └── public_pages.js ├── docs ├── buildsize.jpeg └── lighthouse-report.jpg ├── jest.config.js ├── jest.setup.js ├── next-env.d.ts ├── next-handlers.js ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── _preview │ ├── StripePreview.tsx │ └── [component].tsx ├── api │ ├── hello.js │ ├── stripe │ │ ├── [...nextstripe].js │ │ ├── checkPayment.ts │ │ └── getCustomerPlans.ts │ ├── unfurl.ts │ └── webhook │ │ └── stripe.js ├── index.tsx └── robots.txt.tsx ├── postcss.config.js ├── public ├── darkmode-noflash.js ├── favicon.ico ├── og-default.jpg └── vercel.svg ├── src ├── components │ ├── LinkPreview │ │ ├── controller.tsx │ │ ├── elements.tsx │ │ └── index.tsx │ ├── SEO.tsx │ ├── SendFeedback.tsx │ ├── ToggleDarkMode.tsx │ ├── _preview │ │ ├── DisGui.tsx │ │ ├── components.tsx │ │ ├── containers │ │ │ ├── AntdPreview │ │ │ │ ├── AvatarGroup.tsx │ │ │ │ ├── Badge.tsx │ │ │ │ ├── Buttons.tsx │ │ │ │ ├── Calendar.tsx │ │ │ │ ├── CardWithLoading.tsx │ │ │ │ ├── Carousel.tsx │ │ │ │ ├── Collapse.tsx │ │ │ │ ├── DatePickerSize.tsx │ │ │ │ ├── Drawer.tsx │ │ │ │ ├── DynamicBadge.tsx │ │ │ │ ├── ModalBasic.tsx │ │ │ │ ├── ModalDialog.tsx │ │ │ │ ├── ModalDraggable.tsx │ │ │ │ ├── ModalWithFooter.tsx │ │ │ │ ├── Popconfirm.tsx │ │ │ │ ├── Progress.tsx │ │ │ │ ├── ProgressCircle.tsx │ │ │ │ ├── ProgressWithCustomStroke.tsx │ │ │ │ ├── SwitchablePicker.tsx │ │ │ │ ├── Table.tsx │ │ │ │ ├── Tabs.tsx │ │ │ │ ├── TabsCloseable.tsx │ │ │ │ └── index.tsx │ │ │ ├── BaseWebPreview │ │ │ │ ├── DatePicker.tsx │ │ │ │ ├── DragAndDrop.tsx │ │ │ │ ├── FileUploader.tsx │ │ │ │ ├── Menu.tsx │ │ │ │ ├── PaymentCard.tsx │ │ │ │ ├── PinCode.tsx │ │ │ │ ├── ProgressBar.tsx │ │ │ │ ├── Rating.tsx │ │ │ │ ├── Select.tsx │ │ │ │ └── index.tsx │ │ │ ├── ContentPlaceholder.tsx │ │ │ ├── Grid.tsx │ │ │ ├── LottiePreview.tsx │ │ │ ├── StripePreview │ │ │ │ ├── controller.tsx │ │ │ │ ├── elements.tsx │ │ │ │ └── index.tsx │ │ │ ├── TailwindPreview.tsx │ │ │ ├── TransitionsPreview.tsx │ │ │ └── VercelPreview │ │ │ │ ├── index.tsx │ │ │ │ └── style.module.css │ │ ├── getGithubUrl.ts │ │ └── index.tsx │ └── base │ │ ├── DotsLoader.tsx │ │ ├── Error404.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── ErrorFallback.tsx │ │ ├── FullPageContainer.tsx │ │ ├── lazyload.tsx │ │ └── transitions │ │ ├── Collapse.tsx │ │ ├── FadeIn.tsx │ │ ├── FadeInScale.tsx │ │ ├── PopOut.tsx │ │ ├── Rotate90.tsx │ │ ├── SlideDown.tsx │ │ ├── SlideOver.tsx │ │ └── types.tsx ├── config │ ├── analytic.ts │ ├── app.ts │ └── seo.ts ├── hooks │ └── useDarkMode.ts ├── lib │ ├── analytic │ │ ├── index.ts │ │ └── nextjs-hook.ts │ ├── date │ │ └── dateFromSecond.ts │ ├── github │ │ └── getGithubUrl.ts │ ├── logger.ts │ ├── parseUrls.ts │ ├── stripe │ │ ├── formatAmountForStripe.ts │ │ └── init.ts │ └── unfurl │ │ └── getMetadata.ts ├── services │ └── stripe-webhook │ │ ├── index.ts │ │ └── mock-db.ts ├── styles │ ├── Home.module.css │ ├── antd.less │ ├── globals.css │ ├── tailwind-antd-compat.less │ └── tailwind.css └── utils │ └── trackGoal.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.env -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/test_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.github/test_checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.vercelignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/.vscode/settings.sample.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/chance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/chance.js -------------------------------------------------------------------------------- /__tests__/components/SanityCheck.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/components/SanityCheck.test.js -------------------------------------------------------------------------------- /__tests__/mocks/MswProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/MswProvider.tsx -------------------------------------------------------------------------------- /__tests__/mocks/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/browser.js -------------------------------------------------------------------------------- /__tests__/mocks/handlers/graphql/query_users_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/handlers/graphql/query_users_me.js -------------------------------------------------------------------------------- /__tests__/mocks/handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/handlers/index.js -------------------------------------------------------------------------------- /__tests__/mocks/handlers/rest/mswping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/handlers/rest/mswping.js -------------------------------------------------------------------------------- /__tests__/mocks/handlers/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/handlers/storage.js -------------------------------------------------------------------------------- /__tests__/mocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/index.js -------------------------------------------------------------------------------- /__tests__/mocks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/mocks/server.js -------------------------------------------------------------------------------- /__tests__/stubs/buildUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/stubs/buildUser.js -------------------------------------------------------------------------------- /__tests__/stubs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/stubs/index.js -------------------------------------------------------------------------------- /__tests__/stubs/useStubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/stubs/useStubs.ts -------------------------------------------------------------------------------- /__tests__/stubs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/stubs/utils.js -------------------------------------------------------------------------------- /__tests__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /__tests__/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/__tests__/test-utils.js -------------------------------------------------------------------------------- /apollo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/apollo.config.js -------------------------------------------------------------------------------- /checkly/snippets/publicPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/snippets/publicPages.js -------------------------------------------------------------------------------- /checkly/snippets/takeScreenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/snippets/takeScreenshot.js -------------------------------------------------------------------------------- /checkly/snippets/takeScreenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/snippets/takeScreenshots.js -------------------------------------------------------------------------------- /checkly/snippets/viewports_desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/snippets/viewports_desktop.js -------------------------------------------------------------------------------- /checkly/snippets/viewports_mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/snippets/viewports_mobile.js -------------------------------------------------------------------------------- /checkly/snippets/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/snippets/wait.js -------------------------------------------------------------------------------- /checkly/visual_tests/public_pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/checkly/visual_tests/public_pages.js -------------------------------------------------------------------------------- /docs/buildsize.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/docs/buildsize.jpeg -------------------------------------------------------------------------------- /docs/lighthouse-report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/docs/lighthouse-report.jpg -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/jest.setup.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/next-handlers.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_preview/StripePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/_preview/StripePreview.tsx -------------------------------------------------------------------------------- /pages/_preview/[component].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/_preview/[component].tsx -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/api/stripe/[...nextstripe].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/api/stripe/[...nextstripe].js -------------------------------------------------------------------------------- /pages/api/stripe/checkPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/api/stripe/checkPayment.ts -------------------------------------------------------------------------------- /pages/api/stripe/getCustomerPlans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/api/stripe/getCustomerPlans.ts -------------------------------------------------------------------------------- /pages/api/unfurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/api/unfurl.ts -------------------------------------------------------------------------------- /pages/api/webhook/stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/api/webhook/stripe.js -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/robots.txt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/pages/robots.txt.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/darkmode-noflash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/public/darkmode-noflash.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/public/og-default.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/LinkPreview/controller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/LinkPreview/controller.tsx -------------------------------------------------------------------------------- /src/components/LinkPreview/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/LinkPreview/elements.tsx -------------------------------------------------------------------------------- /src/components/LinkPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/LinkPreview/index.tsx -------------------------------------------------------------------------------- /src/components/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/SEO.tsx -------------------------------------------------------------------------------- /src/components/SendFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/SendFeedback.tsx -------------------------------------------------------------------------------- /src/components/ToggleDarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/ToggleDarkMode.tsx -------------------------------------------------------------------------------- /src/components/_preview/DisGui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/DisGui.tsx -------------------------------------------------------------------------------- /src/components/_preview/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/components.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/AvatarGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/AvatarGroup.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Badge.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Buttons.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Calendar.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/CardWithLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/CardWithLoading.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Carousel.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Collapse.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/DatePickerSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/DatePickerSize.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Drawer.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/DynamicBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/DynamicBadge.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/ModalBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/ModalBasic.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/ModalDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/ModalDialog.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/ModalDraggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/ModalDraggable.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/ModalWithFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/ModalWithFooter.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Popconfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Popconfirm.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Progress.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/ProgressCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/ProgressCircle.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/ProgressWithCustomStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/ProgressWithCustomStroke.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/SwitchablePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/SwitchablePicker.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Table.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/Tabs.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/TabsCloseable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/TabsCloseable.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/AntdPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/AntdPreview/index.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/DatePicker.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/DragAndDrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/DragAndDrop.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/FileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/FileUploader.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/Menu.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/PaymentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/PaymentCard.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/PinCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/PinCode.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/Rating.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/Select.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/BaseWebPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/BaseWebPreview/index.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/ContentPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/ContentPlaceholder.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/Grid.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/LottiePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/LottiePreview.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/StripePreview/controller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/StripePreview/controller.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/StripePreview/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/StripePreview/elements.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/StripePreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/StripePreview/index.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/TailwindPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/TailwindPreview.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/TransitionsPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/TransitionsPreview.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/VercelPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/containers/VercelPreview/index.tsx -------------------------------------------------------------------------------- /src/components/_preview/containers/VercelPreview/style.module.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap'); 2 | -------------------------------------------------------------------------------- /src/components/_preview/getGithubUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/getGithubUrl.ts -------------------------------------------------------------------------------- /src/components/_preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/_preview/index.tsx -------------------------------------------------------------------------------- /src/components/base/DotsLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/DotsLoader.tsx -------------------------------------------------------------------------------- /src/components/base/Error404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/Error404.tsx -------------------------------------------------------------------------------- /src/components/base/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/base/ErrorFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/ErrorFallback.tsx -------------------------------------------------------------------------------- /src/components/base/FullPageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/FullPageContainer.tsx -------------------------------------------------------------------------------- /src/components/base/lazyload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/lazyload.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/Collapse.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/FadeIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/FadeIn.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/FadeInScale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/FadeInScale.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/PopOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/PopOut.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/Rotate90.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/Rotate90.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/SlideDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/SlideDown.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/SlideOver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/SlideOver.tsx -------------------------------------------------------------------------------- /src/components/base/transitions/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/components/base/transitions/types.tsx -------------------------------------------------------------------------------- /src/config/analytic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/config/analytic.ts -------------------------------------------------------------------------------- /src/config/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/config/app.ts -------------------------------------------------------------------------------- /src/config/seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/config/seo.ts -------------------------------------------------------------------------------- /src/hooks/useDarkMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/hooks/useDarkMode.ts -------------------------------------------------------------------------------- /src/lib/analytic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/analytic/index.ts -------------------------------------------------------------------------------- /src/lib/analytic/nextjs-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/analytic/nextjs-hook.ts -------------------------------------------------------------------------------- /src/lib/date/dateFromSecond.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/date/dateFromSecond.ts -------------------------------------------------------------------------------- /src/lib/github/getGithubUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/github/getGithubUrl.ts -------------------------------------------------------------------------------- /src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/logger.ts -------------------------------------------------------------------------------- /src/lib/parseUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/parseUrls.ts -------------------------------------------------------------------------------- /src/lib/stripe/formatAmountForStripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/stripe/formatAmountForStripe.ts -------------------------------------------------------------------------------- /src/lib/stripe/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/stripe/init.ts -------------------------------------------------------------------------------- /src/lib/unfurl/getMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/lib/unfurl/getMetadata.ts -------------------------------------------------------------------------------- /src/services/stripe-webhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/services/stripe-webhook/index.ts -------------------------------------------------------------------------------- /src/services/stripe-webhook/mock-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/services/stripe-webhook/mock-db.ts -------------------------------------------------------------------------------- /src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/styles/Home.module.css -------------------------------------------------------------------------------- /src/styles/antd.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/styles/antd.less -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @import './tailwind.css'; 2 | -------------------------------------------------------------------------------- /src/styles/tailwind-antd-compat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/styles/tailwind-antd-compat.less -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/utils/trackGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/src/utils/trackGoal.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzulfikar/nextjs-10/HEAD/yarn.lock --------------------------------------------------------------------------------