├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .storybook ├── main.ts └── preview.tsx ├── LICENSE.md ├── README.md ├── app ├── [...slug] │ ├── not-found.tsx │ └── page.tsx ├── layout.tsx ├── loading.tsx ├── og │ └── route.tsx ├── page.tsx └── posts │ ├── [...slug] │ ├── not-found.tsx │ └── page.tsx │ └── page.tsx ├── components ├── analytics.tsx ├── blog-title.tsx ├── button.tsx ├── callout.tsx ├── code-block.tsx ├── comments.tsx ├── font-style-provider.tsx ├── footer.tsx ├── header.tsx ├── hero-section.tsx ├── mdx-components.tsx ├── mdx-content.tsx ├── mdx-styles.tsx ├── navigation-bar.tsx ├── page-controls.tsx ├── post-card.tsx ├── post-intro.tsx ├── post-paginator.tsx ├── post-tags.tsx ├── search-input.tsx ├── search-results.tsx ├── search-tags.tsx ├── search.tsx ├── stories │ ├── blog-title.stories.tsx │ ├── button.stories.tsx │ ├── callout.stories.tsx │ ├── code-block.stories.tsx │ ├── decorators │ │ ├── center.tsx │ │ ├── index.ts │ │ ├── markdown.tsx │ │ └── padding.tsx │ ├── footer.stories.tsx │ ├── header.stories.tsx │ ├── hero-section.stories.tsx │ ├── post-card.stories.tsx │ ├── post-intro.stories.tsx │ ├── post-paginator.stories.tsx │ ├── post-tags.stories.tsx │ ├── search.stories.tsx │ ├── table-of-contents.stories.tsx │ └── tooltip.stories.tsx ├── table-of-contents.tsx ├── toolbar.tsx └── tooltip.tsx ├── config ├── index.js └── types.ts ├── content ├── pages │ └── about.mdx └── posts │ ├── computer-vision │ └── lane-detection.mdx │ ├── rust │ └── fizzbuzz.mdx │ └── web-dev │ ├── mdx-nextjs-13.mdx │ └── parallax-framer-motion.mdx ├── contentlayer.config.ts ├── lib ├── datetime.test.ts ├── datetime.ts ├── search.test.ts ├── search.ts └── utils.ts ├── next-sitemap.config.js ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── assets │ ├── RedHatDisplay-Bold.ttf │ ├── RedHatDisplay-Regular.ttf │ └── RedHatDisplay-SemiBold.ttf ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── images │ ├── computer-vision │ │ └── lane-detection │ │ │ ├── first-frame.webp │ │ │ ├── frame-with-lane-markings.webp │ │ │ ├── lines-cropped.webp │ │ │ ├── lines-too-long.webp │ │ │ ├── polar-coordinates.webp │ │ │ ├── polar-to-cartesian.webp │ │ │ ├── preprocessing-steps.webp │ │ │ └── trapezoid-mask.webp │ ├── rust │ │ └── fizzbuzz │ │ │ └── extended.webp │ └── web-dev │ │ ├── mdx-nextjs-13 │ │ ├── frontmatter.webp │ │ ├── meme.webp │ │ └── result.webp │ │ └── parallax-framer-motion │ │ ├── firewatch.gif │ │ ├── parallax-result.gif │ │ └── parallax-step-1.webp └── site.webmanifest ├── stores ├── search-store.ts └── theme-store.ts ├── styles ├── globals.css └── markdown.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/.prettierignore -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/README.md -------------------------------------------------------------------------------- /app/[...slug]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/[...slug]/not-found.tsx -------------------------------------------------------------------------------- /app/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/[...slug]/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/loading.tsx -------------------------------------------------------------------------------- /app/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/og/route.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/posts/[...slug]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/posts/[...slug]/not-found.tsx -------------------------------------------------------------------------------- /app/posts/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/posts/[...slug]/page.tsx -------------------------------------------------------------------------------- /app/posts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/app/posts/page.tsx -------------------------------------------------------------------------------- /components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/analytics.tsx -------------------------------------------------------------------------------- /components/blog-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/blog-title.tsx -------------------------------------------------------------------------------- /components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/button.tsx -------------------------------------------------------------------------------- /components/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/callout.tsx -------------------------------------------------------------------------------- /components/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/code-block.tsx -------------------------------------------------------------------------------- /components/comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/comments.tsx -------------------------------------------------------------------------------- /components/font-style-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/font-style-provider.tsx -------------------------------------------------------------------------------- /components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/footer.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/hero-section.tsx -------------------------------------------------------------------------------- /components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/mdx-components.tsx -------------------------------------------------------------------------------- /components/mdx-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/mdx-content.tsx -------------------------------------------------------------------------------- /components/mdx-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/mdx-styles.tsx -------------------------------------------------------------------------------- /components/navigation-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/navigation-bar.tsx -------------------------------------------------------------------------------- /components/page-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/page-controls.tsx -------------------------------------------------------------------------------- /components/post-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/post-card.tsx -------------------------------------------------------------------------------- /components/post-intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/post-intro.tsx -------------------------------------------------------------------------------- /components/post-paginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/post-paginator.tsx -------------------------------------------------------------------------------- /components/post-tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/post-tags.tsx -------------------------------------------------------------------------------- /components/search-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/search-input.tsx -------------------------------------------------------------------------------- /components/search-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/search-results.tsx -------------------------------------------------------------------------------- /components/search-tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/search-tags.tsx -------------------------------------------------------------------------------- /components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/search.tsx -------------------------------------------------------------------------------- /components/stories/blog-title.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/blog-title.stories.tsx -------------------------------------------------------------------------------- /components/stories/button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/button.stories.tsx -------------------------------------------------------------------------------- /components/stories/callout.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/callout.stories.tsx -------------------------------------------------------------------------------- /components/stories/code-block.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/code-block.stories.tsx -------------------------------------------------------------------------------- /components/stories/decorators/center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/decorators/center.tsx -------------------------------------------------------------------------------- /components/stories/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/decorators/index.ts -------------------------------------------------------------------------------- /components/stories/decorators/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/decorators/markdown.tsx -------------------------------------------------------------------------------- /components/stories/decorators/padding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/decorators/padding.tsx -------------------------------------------------------------------------------- /components/stories/footer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/footer.stories.tsx -------------------------------------------------------------------------------- /components/stories/header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/header.stories.tsx -------------------------------------------------------------------------------- /components/stories/hero-section.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/hero-section.stories.tsx -------------------------------------------------------------------------------- /components/stories/post-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/post-card.stories.tsx -------------------------------------------------------------------------------- /components/stories/post-intro.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/post-intro.stories.tsx -------------------------------------------------------------------------------- /components/stories/post-paginator.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/post-paginator.stories.tsx -------------------------------------------------------------------------------- /components/stories/post-tags.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/post-tags.stories.tsx -------------------------------------------------------------------------------- /components/stories/search.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/search.stories.tsx -------------------------------------------------------------------------------- /components/stories/table-of-contents.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/table-of-contents.stories.tsx -------------------------------------------------------------------------------- /components/stories/tooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/stories/tooltip.stories.tsx -------------------------------------------------------------------------------- /components/table-of-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/table-of-contents.tsx -------------------------------------------------------------------------------- /components/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/toolbar.tsx -------------------------------------------------------------------------------- /components/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/components/tooltip.tsx -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/config/index.js -------------------------------------------------------------------------------- /config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/config/types.ts -------------------------------------------------------------------------------- /content/pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/content/pages/about.mdx -------------------------------------------------------------------------------- /content/posts/computer-vision/lane-detection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/content/posts/computer-vision/lane-detection.mdx -------------------------------------------------------------------------------- /content/posts/rust/fizzbuzz.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/content/posts/rust/fizzbuzz.mdx -------------------------------------------------------------------------------- /content/posts/web-dev/mdx-nextjs-13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/content/posts/web-dev/mdx-nextjs-13.mdx -------------------------------------------------------------------------------- /content/posts/web-dev/parallax-framer-motion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/content/posts/web-dev/parallax-framer-motion.mdx -------------------------------------------------------------------------------- /contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/contentlayer.config.ts -------------------------------------------------------------------------------- /lib/datetime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/lib/datetime.test.ts -------------------------------------------------------------------------------- /lib/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/lib/datetime.ts -------------------------------------------------------------------------------- /lib/search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/lib/search.test.ts -------------------------------------------------------------------------------- /lib/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/lib/search.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/assets/RedHatDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/assets/RedHatDisplay-Bold.ttf -------------------------------------------------------------------------------- /public/assets/RedHatDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/assets/RedHatDisplay-Regular.ttf -------------------------------------------------------------------------------- /public/assets/RedHatDisplay-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/assets/RedHatDisplay-SemiBold.ttf -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/first-frame.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/first-frame.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/frame-with-lane-markings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/frame-with-lane-markings.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/lines-cropped.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/lines-cropped.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/lines-too-long.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/lines-too-long.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/polar-coordinates.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/polar-coordinates.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/polar-to-cartesian.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/polar-to-cartesian.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/preprocessing-steps.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/preprocessing-steps.webp -------------------------------------------------------------------------------- /public/images/computer-vision/lane-detection/trapezoid-mask.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/computer-vision/lane-detection/trapezoid-mask.webp -------------------------------------------------------------------------------- /public/images/rust/fizzbuzz/extended.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/rust/fizzbuzz/extended.webp -------------------------------------------------------------------------------- /public/images/web-dev/mdx-nextjs-13/frontmatter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/web-dev/mdx-nextjs-13/frontmatter.webp -------------------------------------------------------------------------------- /public/images/web-dev/mdx-nextjs-13/meme.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/web-dev/mdx-nextjs-13/meme.webp -------------------------------------------------------------------------------- /public/images/web-dev/mdx-nextjs-13/result.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/web-dev/mdx-nextjs-13/result.webp -------------------------------------------------------------------------------- /public/images/web-dev/parallax-framer-motion/firewatch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/web-dev/parallax-framer-motion/firewatch.gif -------------------------------------------------------------------------------- /public/images/web-dev/parallax-framer-motion/parallax-result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/web-dev/parallax-framer-motion/parallax-result.gif -------------------------------------------------------------------------------- /public/images/web-dev/parallax-framer-motion/parallax-step-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/images/web-dev/parallax-framer-motion/parallax-step-1.webp -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /stores/search-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/stores/search-store.ts -------------------------------------------------------------------------------- /stores/theme-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/stores/theme-store.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/styles/markdown.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfirfitousi/blog/HEAD/tsconfig.json --------------------------------------------------------------------------------