1 |
- {"version":3,"file":"../pages/tajweed-colors.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AASA,MAAMA,cAAc,GAAG;IAAC,QAAQ;IAAE,OAAO;IAAE,WAAW;IAAE,SAAS;IAAE,OAAO;IAAE,OAAO;IAAE,SAAS;CAAC,CAAC;AAEhG,MAAMC,aAAa,GAAG,IAAM;IAC1B,MAAM,EAAEC,CAAC,GAAE,GAAGC,oEAAc,CAAC,SAAS,CAAC,CAAC;IACxC,qBACEC,uDAAA,CAAAC,uDAAA;;AACE,0BAAAC,sDAAA,CAACC,2EAAc;AAACC,gBAAAA,KAAK,EAAEN,CAAC,CAAC,gBAAgB,CAAC;AAAI;AAC9C,0BAAAE,uDAAA,CAACK,KAAG;gBAACC,SAAS,EAAEC,6EAAgB;;AAC9B,kCAAAL,sDAAA,CAACO,GAAC;wBAACH,SAAS,EAAEC,0EAAa;kCAAGT,CAAC,CAAC,gBAAgB,CAAC;AAAK;AACrDF,oBAAAA,cAAc,CAACe,GAAG,CAAC,CAACC,KAAK,iBACxBZ,uDAACK,CAAAA,KAAG;4BAACC,SAAS,EAAEC,kFAAqB;;AACnC,8CAAAL,sDAAA,CAACG,KAAG;oCAACC,SAAS,EAAEQ,iDAAU,CAACP,0EAAa,EAAEA,mEAAM,CAACK,KAAK,CAAC,CAAC;AAAI;AAC5D,8CAAAV,sDAAA,CAACO,GAAC;8CAAEX,CAAC,CAACc,KAAK,CAAC;AAAK;;AAFyBA,yBAAAA,EAAAA,KAAK,CAG3C,CACN;;AACE;;MACL,CACH;AACJ,CAAC;;;;;;;ACvBD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,cAAc,GAAG,qBAAqB,EAAE;AAC9C;AACA,MAAM,aAAa,GAAG,cAAc,GAAG,cAAc,CAAC,OAAO,GAAG,SAAS,CAAC;AAC1E;AACA,MAAM,mBAAmB,GAAG,aAAa,GAAG,aAAa,CAAC,eAAe,GAAG,SAAS,CAAC;AACtF,MAAM,kBAAkB,GAAG,cAAc,GAAG,cAAc,CAAC,cAAc,GAAG,SAAS,CAAC;AACtF,MAAM,sBAAsB,GAAG,cAAc,GAAG,cAAc,CAAC,kBAAkB,GAAG,SAAS,CAAC;AAC9F;AACA;AACA,MAAM,uBAAuB,GAAG;AAChC,EAAE,OAAO,EAAE,4EAAuC;AAClD,EAAE,YAAY,EAAE,iFAA4C;AAC5D,EAAE,SAAS,EAAE,8EAAyC;AACtD,CAAC,CAAC;AACF;AACA,MAAM,sBAAsB,GAAG,uBAAuB,CAAC,iBAAiB,CAAC,IAAI,yEAAoC,CAAC;AAClH;AACA,IAAI,aAAa,IAAI,OAAO,mBAAmB,KAAK,UAAU,EAAE;AAChE,EAAE,aAAa,CAAC,eAAe,GAAG,sBAAsB,CAAC,mBAAmB,CAAC,EAAE;AAC/E,CAAC;AACD;AACK,MAAC,cAAc;AACpB,EAAE,OAAO,kBAAkB,KAAK,UAAU;AAC1C,MAAM,wEAAmC,CAAC,kBAAkB,EAAE,iBAAiB,CAAC;AAChF,MAAM,UAAU;AACX,MAAC,kBAAkB;AACxB,EAAE,OAAO,sBAAsB,KAAK,UAAU;AAC9C,MAAM,4EAAuC,CAAC,sBAAsB,EAAE,iBAAiB,CAAC;AACxF,MAAM,UAAU;AAChB;AACM,yBAAmB,GAAG,aAAa,GAAG,uEAAkC,CAAC,aAAa,EAAE,GAAG;;;;;;;;;;AC1CjG;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACbA;;;;;;;;ACAA;;;;;;;;ACAA;;;;;;;;ACAA;;;;;;;;ACAA;;;;;;;;ACAA","sources":["webpack://quran.com/src/pages/tajweed-colors.tsx","webpack://quran.com/sentry-wrapper-module","webpack://quran.com/./src/pages/tajweedColors.module.scss","webpack://quran.com/external commonjs \"@sentry/nextjs\"","webpack://quran.com/external commonjs \"classnames\"","webpack://quran.com/external commonjs \"next-seo\"","webpack://quran.com/external commonjs \"next-translate/useTranslation\"","webpack://quran.com/external commonjs \"react\"","webpack://quran.com/external commonjs \"react/jsx-runtime\""],"sourcesContent":["import React from 'react';\n\nimport classNames from 'classnames';\nimport useTranslation from 'next-translate/useTranslation';\n\nimport styles from './tajweedColors.module.scss';\n\nimport NextSeoWrapper from '@/components/NextSeoWrapper';\n\nconst TAJWEED_COLORS = ['edgham', 'mad-2', 'mad-2-4-6', 'mad-4-5', 'mad-6', 'ekhfa', 'qalqala'];\n\nconst TajweedColors = () => {\n const { t } = useTranslation('tajweed');\n return (\n <>\n <NextSeoWrapper title={t('tajweed-header')} />\n <div className={styles.container}>\n <p className={styles.header}>{t('tajweed-header')}</p>\n {TAJWEED_COLORS.map((color) => (\n <div className={styles.colorContainer} key={color}>\n <div className={classNames(styles.circle, styles[color])} />\n <p>{t(color)}</p>\n </div>\n ))}\n </div>\n </>\n );\n};\n\nexport default TajweedColors;\n","import * as Sentry from '@sentry/nextjs';\nimport * as serverComponentModule from '__SENTRY_WRAPPING_TARGET_FILE__.cjs';\nexport * from '__SENTRY_WRAPPING_TARGET_FILE__.cjs';\n\n/*\n * This file is a template for the code which will be substituted when our webpack loader handles non-API files in the\n * `pages/` directory.\n *\n * We use `__SENTRY_WRAPPING_TARGET_FILE__.cjs` as a placeholder for the path to the file being wrapped. Because it's not a real package,\n * this causes both TS and ESLint to complain, hence the pragma comments below.\n */\n\nconst userPageModule = serverComponentModule ;\n\nconst pageComponent = userPageModule ? userPageModule.default : undefined;\n\nconst origGetInitialProps = pageComponent ? pageComponent.getInitialProps : undefined;\nconst origGetStaticProps = userPageModule ? userPageModule.getStaticProps : undefined;\nconst origGetServerSideProps = userPageModule ? userPageModule.getServerSideProps : undefined;\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst getInitialPropsWrappers = {\n '/_app': Sentry.wrapAppGetInitialPropsWithSentry,\n '/_document': Sentry.wrapDocumentGetInitialPropsWithSentry,\n '/_error': Sentry.wrapErrorGetInitialPropsWithSentry,\n};\n\nconst getInitialPropsWrapper = getInitialPropsWrappers['/tajweed-colors'] || Sentry.wrapGetInitialPropsWithSentry;\n\nif (pageComponent && typeof origGetInitialProps === 'function') {\n pageComponent.getInitialProps = getInitialPropsWrapper(origGetInitialProps) ;\n}\n\nconst getStaticProps =\n typeof origGetStaticProps === 'function'\n ? Sentry.wrapGetStaticPropsWithSentry(origGetStaticProps, '/tajweed-colors')\n : undefined;\nconst getServerSideProps =\n typeof origGetServerSideProps === 'function'\n ? Sentry.wrapGetServerSidePropsWithSentry(origGetServerSideProps, '/tajweed-colors')\n : undefined;\n\nconst pageWrapperTemplate = pageComponent ? Sentry.wrapPageComponentWithSentry(pageComponent ) : pageComponent;\n\nexport { pageWrapperTemplate as default, getServerSideProps, getStaticProps };\n","// Exports\nmodule.exports = {\n\t\"header\": \"tajweedColors_header__yAOjb\",\n\t\"container\": \"tajweedColors_container__8dzlA\",\n\t\"colorContainer\": \"tajweedColors_colorContainer__Rh8ob\",\n\t\"circle\": \"tajweedColors_circle__oMedD\",\n\t\"edgham\": \"tajweedColors_edgham__n8J53\",\n\t\"mad-2\": \"tajweedColors_mad-2__S_qAn\",\n\t\"mad-6\": \"tajweedColors_mad-6__8Xfbt\",\n\t\"mad-2-4-6\": \"tajweedColors_mad-2-4-6__Hl9sy\",\n\t\"mad-4-5\": \"tajweedColors_mad-4-5__0j8Xs\",\n\t\"ekhfa\": \"tajweedColors_ekhfa__lKkTQ\",\n\t\"qalqala\": \"tajweedColors_qalqala__2qWZI\"\n};\n","module.exports = require(\"@sentry/nextjs\");","module.exports = require(\"classnames\");","module.exports = require(\"next-seo\");","module.exports = require(\"next-translate/useTranslation\");","module.exports = require(\"react\");","module.exports = require(\"react/jsx-runtime\");"],"names":["TAJWEED_COLORS","TajweedColors","t","useTranslation","_jsxs","_Fragment","_jsx","NextSeoWrapper","title","div","className","styles","container","p","header","map","color","colorContainer","classNames","circle"],"sourceRoot":""}
|