├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .storybook ├── main.js └── preview.js ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── README.md ├── next-sitemap.config.js ├── next.config.js ├── package.json ├── public ├── ads.txt ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── android-icon-144x144.png ├── android-icon-192x192.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png ├── ms-icon-70x70.png ├── og.jpeg ├── robots.txt ├── site.webmanifest ├── sitemap-0.xml ├── sitemap.xml └── sw.js ├── src ├── axios │ └── index.ts ├── component │ ├── Accordian │ │ ├── index.tsx │ │ └── styles.module.css │ ├── Alert │ │ ├── index.tsx │ │ └── styles.module.css │ ├── ButtonToolTip.tsx │ ├── CTA │ │ ├── index.tsx │ │ └── styles.module.css │ ├── Codeblock.tsx │ ├── ColorComponent │ │ └── index.tsx │ ├── Droppable.tsx │ ├── Footer │ │ └── index.tsx │ ├── FormBox │ │ └── index.tsx │ ├── FullModel │ │ ├── index.tsx │ │ └── styles.module.css │ ├── Icons │ │ ├── index.tsx │ │ └── styles.module.css │ ├── InfoCard │ │ ├── InfoCard.module.css │ │ └── InfoCard.tsx │ ├── InfoCarousel │ │ └── index.tsx │ ├── InfoCheckbox │ │ └── InfoCheckbox.tsx │ ├── InfoQuiz │ │ └── index.tsx │ ├── InputComponent │ │ └── index.tsx │ ├── LeftSidebar.tsx │ ├── Model │ │ ├── Model.module.css │ │ └── Model.tsx │ ├── Navbar.tsx │ ├── NewView.tsx │ ├── Nossr.tsx │ ├── OnBoarding │ │ └── index.tsx │ ├── Placeholder │ │ ├── Frame 12.svg │ │ ├── Placeholder.module.css │ │ └── Placeholder.tsx │ ├── RightSidebar.tsx │ ├── SEO │ │ └── index.tsx │ ├── SliderComponent │ │ ├── index.tsx │ │ └── styles.module.css │ ├── SortableItem.tsx │ ├── Toggle │ │ ├── Toggle.module.css │ │ └── Toggle.tsx │ ├── ToggleGroup.module.css │ ├── ToggleGroup.tsx │ ├── ToolTip │ │ ├── ToolTip.module.css │ │ └── ToolTip.tsx │ ├── Unsplash │ │ └── index.tsx │ ├── horizontalContainer.tsx │ ├── prism.module.css │ └── verticalContainer.tsx ├── context │ └── data.tsx ├── lib │ ├── animation.tsx │ ├── constants.ts │ ├── index.tsx │ └── markdownParser.ts ├── pages │ ├── 10-mistakes-of-entrepreneurs-guy-kawasaki-coolhead-webstory.jsx │ ├── 404.tsx │ ├── _app.tsx │ ├── _offline.tsx │ ├── api │ │ └── hello.ts │ ├── component.tsx │ ├── demystifying-javascript-terminology.jsx │ ├── function-scope-vs-block-scope-in-javascript.jsx │ ├── globals.css │ ├── how-to-add-google-analytics-in-web-stories.tsx │ ├── how-to-monetize-web-story.tsx │ ├── https-3-explained.jsx │ ├── index.tsx │ ├── learn.tsx │ ├── privacy.tsx │ └── seo-tips-for-google-web-stories.tsx └── stories │ ├── InfoCarousel.stories.tsx │ ├── InfoCheckbox.stories.tsx │ └── InputComponent.stories.tsx ├── todo.md └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | 5 | npm run lint -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/README.md -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/package.json -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-7971530262943091, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/android-icon-144x144.png -------------------------------------------------------------------------------- /public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/android-icon-192x192.png -------------------------------------------------------------------------------- /public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/og.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/og.jpeg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sitemap-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/sitemap-0.xml -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/public/sw.js -------------------------------------------------------------------------------- /src/axios/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/axios/index.ts -------------------------------------------------------------------------------- /src/component/Accordian/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Accordian/index.tsx -------------------------------------------------------------------------------- /src/component/Accordian/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Accordian/styles.module.css -------------------------------------------------------------------------------- /src/component/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Alert/index.tsx -------------------------------------------------------------------------------- /src/component/Alert/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Alert/styles.module.css -------------------------------------------------------------------------------- /src/component/ButtonToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/ButtonToolTip.tsx -------------------------------------------------------------------------------- /src/component/CTA/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/CTA/index.tsx -------------------------------------------------------------------------------- /src/component/CTA/styles.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/Codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Codeblock.tsx -------------------------------------------------------------------------------- /src/component/ColorComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/ColorComponent/index.tsx -------------------------------------------------------------------------------- /src/component/Droppable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Droppable.tsx -------------------------------------------------------------------------------- /src/component/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Footer/index.tsx -------------------------------------------------------------------------------- /src/component/FormBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/FormBox/index.tsx -------------------------------------------------------------------------------- /src/component/FullModel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/FullModel/index.tsx -------------------------------------------------------------------------------- /src/component/FullModel/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/FullModel/styles.module.css -------------------------------------------------------------------------------- /src/component/Icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Icons/index.tsx -------------------------------------------------------------------------------- /src/component/Icons/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Icons/styles.module.css -------------------------------------------------------------------------------- /src/component/InfoCard/InfoCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/InfoCard/InfoCard.module.css -------------------------------------------------------------------------------- /src/component/InfoCard/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/InfoCard/InfoCard.tsx -------------------------------------------------------------------------------- /src/component/InfoCarousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/InfoCarousel/index.tsx -------------------------------------------------------------------------------- /src/component/InfoCheckbox/InfoCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/InfoCheckbox/InfoCheckbox.tsx -------------------------------------------------------------------------------- /src/component/InfoQuiz/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/InfoQuiz/index.tsx -------------------------------------------------------------------------------- /src/component/InputComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/InputComponent/index.tsx -------------------------------------------------------------------------------- /src/component/LeftSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/LeftSidebar.tsx -------------------------------------------------------------------------------- /src/component/Model/Model.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Model/Model.module.css -------------------------------------------------------------------------------- /src/component/Model/Model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Model/Model.tsx -------------------------------------------------------------------------------- /src/component/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Navbar.tsx -------------------------------------------------------------------------------- /src/component/NewView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/NewView.tsx -------------------------------------------------------------------------------- /src/component/Nossr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Nossr.tsx -------------------------------------------------------------------------------- /src/component/OnBoarding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/OnBoarding/index.tsx -------------------------------------------------------------------------------- /src/component/Placeholder/Frame 12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Placeholder/Frame 12.svg -------------------------------------------------------------------------------- /src/component/Placeholder/Placeholder.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/Placeholder/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Placeholder/Placeholder.tsx -------------------------------------------------------------------------------- /src/component/RightSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/RightSidebar.tsx -------------------------------------------------------------------------------- /src/component/SEO/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/SEO/index.tsx -------------------------------------------------------------------------------- /src/component/SliderComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/SliderComponent/index.tsx -------------------------------------------------------------------------------- /src/component/SliderComponent/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/SliderComponent/styles.module.css -------------------------------------------------------------------------------- /src/component/SortableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/SortableItem.tsx -------------------------------------------------------------------------------- /src/component/Toggle/Toggle.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Toggle/Toggle.module.css -------------------------------------------------------------------------------- /src/component/Toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Toggle/Toggle.tsx -------------------------------------------------------------------------------- /src/component/ToggleGroup.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/ToggleGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/ToggleGroup.tsx -------------------------------------------------------------------------------- /src/component/ToolTip/ToolTip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/ToolTip/ToolTip.module.css -------------------------------------------------------------------------------- /src/component/ToolTip/ToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/ToolTip/ToolTip.tsx -------------------------------------------------------------------------------- /src/component/Unsplash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/Unsplash/index.tsx -------------------------------------------------------------------------------- /src/component/horizontalContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/horizontalContainer.tsx -------------------------------------------------------------------------------- /src/component/prism.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/verticalContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/component/verticalContainer.tsx -------------------------------------------------------------------------------- /src/context/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/context/data.tsx -------------------------------------------------------------------------------- /src/lib/animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/lib/animation.tsx -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/lib/index.tsx -------------------------------------------------------------------------------- /src/lib/markdownParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/lib/markdownParser.ts -------------------------------------------------------------------------------- /src/pages/10-mistakes-of-entrepreneurs-guy-kawasaki-coolhead-webstory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/10-mistakes-of-entrepreneurs-guy-kawasaki-coolhead-webstory.jsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/_offline.tsx -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/component.tsx -------------------------------------------------------------------------------- /src/pages/demystifying-javascript-terminology.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/demystifying-javascript-terminology.jsx -------------------------------------------------------------------------------- /src/pages/function-scope-vs-block-scope-in-javascript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/function-scope-vs-block-scope-in-javascript.jsx -------------------------------------------------------------------------------- /src/pages/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/globals.css -------------------------------------------------------------------------------- /src/pages/how-to-add-google-analytics-in-web-stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/how-to-add-google-analytics-in-web-stories.tsx -------------------------------------------------------------------------------- /src/pages/how-to-monetize-web-story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/how-to-monetize-web-story.tsx -------------------------------------------------------------------------------- /src/pages/https-3-explained.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/https-3-explained.jsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/learn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/learn.tsx -------------------------------------------------------------------------------- /src/pages/privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/privacy.tsx -------------------------------------------------------------------------------- /src/pages/seo-tips-for-google-web-stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/pages/seo-tips-for-google-web-stories.tsx -------------------------------------------------------------------------------- /src/stories/InfoCarousel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/stories/InfoCarousel.stories.tsx -------------------------------------------------------------------------------- /src/stories/InfoCheckbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/stories/InfoCheckbox.stories.tsx -------------------------------------------------------------------------------- /src/stories/InputComponent.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/src/stories/InputComponent.stories.tsx -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/todo.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomathcode/web-story-next/HEAD/tsconfig.json --------------------------------------------------------------------------------