├── .env.example ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── app ├── about │ └── page.tsx ├── api │ ├── og │ │ └── route.tsx │ ├── posts │ │ └── route.ts │ ├── projects │ │ └── route.ts │ ├── stars │ │ └── [repo] │ │ │ └── route.tsx │ └── views │ │ └── route.ts ├── blog │ ├── (2022) │ │ ├── og-image │ │ │ └── page.mdx │ │ └── storybook-vite │ │ │ └── page.mdx │ ├── (2023) │ │ ├── how-to-setup-python-environment │ │ │ └── page.mdx │ │ ├── noise-contrast │ │ │ └── page.mdx │ │ ├── one-hunter │ │ │ └── page.mdx │ │ └── spotigen-chat-gpt-plugin │ │ │ └── page.mdx │ ├── (2024) │ │ └── tinte │ │ │ └── page.mdx │ ├── header.tsx │ ├── layout.tsx │ └── page.tsx ├── footer.tsx ├── header.tsx ├── layout.tsx ├── page.tsx ├── projects │ ├── (2021) │ │ ├── button-library │ │ │ └── page.mdx │ │ ├── cinfo │ │ │ └── page.mdx │ │ ├── first-portfolio │ │ │ └── page.mdx │ │ ├── foody │ │ │ └── page.mdx │ │ ├── indie-singles │ │ │ └── page.mdx │ │ └── kisaragi │ │ │ └── page.mdx │ ├── header.tsx │ ├── layout.tsx │ └── page.tsx ├── providers.tsx └── stack │ └── page.tsx ├── bun.lock ├── components ├── animations │ └── fade-in.tsx ├── buttons │ ├── glow-button.tsx │ └── resume-button.tsx ├── cards │ ├── about-card.tsx │ ├── blog-card.tsx │ ├── crafter-card.tsx │ ├── disclaimer-card.tsx │ ├── framer-card.tsx │ ├── noisy-card.tsx │ ├── one-hunter-card.tsx │ ├── profile-card.tsx │ ├── project-card.tsx │ └── work-experience-card.tsx ├── icons │ ├── AWS.tsx │ ├── Anthropic.tsx │ ├── Arduino.tsx │ ├── Arrow.tsx │ ├── Astro.tsx │ ├── Azure.tsx │ ├── Bootstrap.tsx │ ├── CPlusPlus.tsx │ ├── CloseMenu.tsx │ ├── Cron.tsx │ ├── DarkMode.tsx │ ├── Discord.tsx │ ├── Docker.tsx │ ├── Electron.tsx │ ├── Excalidraw.tsx │ ├── ExpressJS.tsx │ ├── Eye.tsx │ ├── FastAPI.tsx │ ├── Figma.tsx │ ├── Firebase.tsx │ ├── FramerMotion.tsx │ ├── Git.tsx │ ├── GitHubCopilot.tsx │ ├── Github.tsx │ ├── Gitlab.tsx │ ├── Golang.tsx │ ├── GoogleSuite.tsx │ ├── GraphQL.tsx │ ├── Hono.tsx │ ├── JavaScript.tsx │ ├── Jest.tsx │ ├── Laravel.tsx │ ├── LightMode.tsx │ ├── Linear.tsx │ ├── Linkedin.tsx │ ├── MongoDB.tsx │ ├── NestJS.tsx │ ├── NextJS.tsx │ ├── NodeJS.tsx │ ├── Notion.tsx │ ├── Npm.tsx │ ├── Obsidian.tsx │ ├── OpenAI.tsx │ ├── OpenMenu.tsx │ ├── Play.tsx │ ├── Playwright.tsx │ ├── Pnpm.tsx │ ├── PostgreSQL.tsx │ ├── PowerShell.tsx │ ├── Prisma.tsx │ ├── Python.tsx │ ├── RHLogo.tsx │ ├── ReactJS.tsx │ ├── ReactTestingLibrary.tsx │ ├── Redux.tsx │ ├── Rust.tsx │ ├── SaSS.tsx │ ├── Schedule.tsx │ ├── Sequelize.tsx │ ├── Slack.tsx │ ├── Soon.tsx │ ├── Storybook.tsx │ ├── StyledComponents.tsx │ ├── Supabase.tsx │ ├── Swagger.tsx │ ├── TailwindCSS.tsx │ ├── ThunderClient.tsx │ ├── Turborepo.tsx │ ├── Twitter.tsx │ ├── TypeScript.tsx │ ├── VSCode.tsx │ ├── Vercel.tsx │ ├── Vim.tsx │ ├── Vite.tsx │ ├── Windows.tsx │ ├── WindowsTerminal.tsx │ ├── Zoom.tsx │ └── index.tsx ├── images │ └── rh-profile-image.tsx ├── layouts │ ├── app-layout.tsx │ ├── social-links.tsx │ └── top-bar.tsx ├── links │ ├── footer-link.tsx │ ├── header-link.tsx │ └── link-with-arrow.tsx ├── mdx │ ├── a │ │ └── index.tsx │ ├── blockquote │ │ └── index.tsx │ ├── heading │ │ ├── h1.tsx │ │ ├── h2.tsx │ │ ├── h3.tsx │ │ └── utils.tsx │ ├── hr │ │ └── index.tsx │ ├── image │ │ └── index.tsx │ ├── list │ │ ├── li.tsx │ │ ├── ol.tsx │ │ └── ul.tsx │ └── p │ │ └── index.tsx ├── misc │ ├── repo-stars.tsx │ ├── spotlight.tsx │ └── tailwind-indicator.tsx ├── scripts │ └── counterscale-script.tsx ├── sections │ ├── blog-section.tsx │ ├── featured-section.tsx │ ├── main-section.tsx │ ├── project-section.tsx │ ├── stack-section.tsx │ ├── tech-section.tsx │ └── work-experience-section.tsx └── ui │ ├── button.tsx │ ├── dialog.tsx │ ├── tabs.tsx │ └── tooltip.tsx ├── config └── site.ts ├── hooks ├── use-has-mounted.ts ├── use-mouse-position.ts ├── use-on-click-outside.ts └── use-request.ts ├── lib ├── api │ ├── get-blog-posts.ts │ ├── get-github-repo.ts │ └── get-projects.ts ├── fetcher.ts ├── one-hunter-theme-dark.json ├── posts.json ├── projects.json ├── rehype.mjs └── utils.ts ├── mdx-components.ts ├── middleware.ts ├── next-env.d.ts ├── next-types.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── fonts │ ├── Inter-Bold.ttf │ └── Inter-Medium.ttf ├── images │ ├── button-browser.png │ ├── button.png │ ├── cinfo-browser.png │ ├── cinfo-browser2.png │ ├── cinfo-logo.png │ ├── cinfo.png │ ├── classic.png │ ├── comparative-noise-2.png │ ├── contrast-comparative.jpg │ ├── crafter-station-logo.png │ ├── drizzle-logo.png │ ├── favicon.ico │ ├── foody-login.png │ ├── foody-recipe.png │ ├── foody.png │ ├── globant-logo.png │ ├── hello-world.png │ ├── histogram-comparative.jpg │ ├── id-logo.jpg │ ├── indie-singles-browser.png │ ├── indie-singles-browser2.png │ ├── indie-singles.png │ ├── kisaragi-browser.png │ ├── kisaragi.png │ ├── material.png │ ├── memora.png │ ├── next.png │ ├── noise-comparative.jpg │ ├── noise.jpg │ ├── og-image-example.png │ ├── og.png │ ├── oht.png │ ├── one-hunter-logo.png │ ├── pci-logo.png │ ├── plugins-mail.png │ ├── portfolio-browser.png │ ├── portfolio-project.png │ ├── portfolio.png │ ├── private-github │ │ ├── flexoki-dark.jpg │ │ ├── flexoki-light.jpg │ │ ├── one-hunter-dark.jpg │ │ ├── one-hunter-light.jpg │ │ └── tinte-logo.png │ ├── profile-2.png │ ├── profile-2023.jpg │ ├── profile-2023.png │ ├── profile.jpg │ ├── profile.png │ ├── python-tutorial-1.png │ ├── python-tutorial-2.png │ ├── python-tutorial-3.png │ ├── python-tutorial-4.png │ ├── python-tutorial-5.png │ ├── python-tutorial-6.png │ ├── rh-logo.png │ ├── shadcn-customizer-logo.png │ ├── shadcnui.png │ ├── shadcnuidocs.png │ ├── simple-flashcards-logo.png │ ├── speedle.png │ ├── spotigen-logo.png │ ├── spotigen-plugin-2.png │ ├── spotigen-plugin-3.png │ ├── spotigen-plugin-4.png │ ├── spotigen-plugin.png │ ├── spotigen.png │ ├── storybook-1.webp │ ├── svg-hunter-logo.png │ ├── tinte-logo.png │ ├── unknown-logo.png │ └── unmsm-logo.png ├── pdf │ ├── RH-CV-2022.pdf │ ├── Railly-Hugo-CV-2023-Q4-ENG.pdf │ ├── Railly-Hugo-CV-2024-Q3-ENG.pdf │ └── Railly-Hugo-CV-2024-Q4-ENG.pdf └── svg │ ├── cinfo-logo.svg │ ├── one-hunter-theme.svg │ ├── rh-logo-dark.svg │ └── rh-logo.svg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types ├── enums.ts ├── interfaces.ts ├── request.d.ts └── types.d.ts └── utils ├── data.tsx ├── helpers.ts └── styles.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Website 2 | -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/api/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/api/og/route.tsx -------------------------------------------------------------------------------- /app/api/posts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/api/posts/route.ts -------------------------------------------------------------------------------- /app/api/projects/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/api/projects/route.ts -------------------------------------------------------------------------------- /app/api/stars/[repo]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/api/stars/[repo]/route.tsx -------------------------------------------------------------------------------- /app/api/views/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/api/views/route.ts -------------------------------------------------------------------------------- /app/blog/(2022)/og-image/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2022)/og-image/page.mdx -------------------------------------------------------------------------------- /app/blog/(2022)/storybook-vite/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2022)/storybook-vite/page.mdx -------------------------------------------------------------------------------- /app/blog/(2023)/how-to-setup-python-environment/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2023)/how-to-setup-python-environment/page.mdx -------------------------------------------------------------------------------- /app/blog/(2023)/noise-contrast/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2023)/noise-contrast/page.mdx -------------------------------------------------------------------------------- /app/blog/(2023)/one-hunter/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2023)/one-hunter/page.mdx -------------------------------------------------------------------------------- /app/blog/(2023)/spotigen-chat-gpt-plugin/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2023)/spotigen-chat-gpt-plugin/page.mdx -------------------------------------------------------------------------------- /app/blog/(2024)/tinte/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/(2024)/tinte/page.mdx -------------------------------------------------------------------------------- /app/blog/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/header.tsx -------------------------------------------------------------------------------- /app/blog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/layout.tsx -------------------------------------------------------------------------------- /app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/blog/page.tsx -------------------------------------------------------------------------------- /app/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/footer.tsx -------------------------------------------------------------------------------- /app/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/header.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/projects/(2021)/button-library/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/(2021)/button-library/page.mdx -------------------------------------------------------------------------------- /app/projects/(2021)/cinfo/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/(2021)/cinfo/page.mdx -------------------------------------------------------------------------------- /app/projects/(2021)/first-portfolio/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/(2021)/first-portfolio/page.mdx -------------------------------------------------------------------------------- /app/projects/(2021)/foody/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/(2021)/foody/page.mdx -------------------------------------------------------------------------------- /app/projects/(2021)/indie-singles/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/(2021)/indie-singles/page.mdx -------------------------------------------------------------------------------- /app/projects/(2021)/kisaragi/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/(2021)/kisaragi/page.mdx -------------------------------------------------------------------------------- /app/projects/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/header.tsx -------------------------------------------------------------------------------- /app/projects/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/layout.tsx -------------------------------------------------------------------------------- /app/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/projects/page.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /app/stack/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/app/stack/page.tsx -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/bun.lock -------------------------------------------------------------------------------- /components/animations/fade-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/animations/fade-in.tsx -------------------------------------------------------------------------------- /components/buttons/glow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/buttons/glow-button.tsx -------------------------------------------------------------------------------- /components/buttons/resume-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/buttons/resume-button.tsx -------------------------------------------------------------------------------- /components/cards/about-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/about-card.tsx -------------------------------------------------------------------------------- /components/cards/blog-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/blog-card.tsx -------------------------------------------------------------------------------- /components/cards/crafter-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/crafter-card.tsx -------------------------------------------------------------------------------- /components/cards/disclaimer-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/disclaimer-card.tsx -------------------------------------------------------------------------------- /components/cards/framer-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/framer-card.tsx -------------------------------------------------------------------------------- /components/cards/noisy-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/noisy-card.tsx -------------------------------------------------------------------------------- /components/cards/one-hunter-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/one-hunter-card.tsx -------------------------------------------------------------------------------- /components/cards/profile-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/profile-card.tsx -------------------------------------------------------------------------------- /components/cards/project-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/project-card.tsx -------------------------------------------------------------------------------- /components/cards/work-experience-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/cards/work-experience-card.tsx -------------------------------------------------------------------------------- /components/icons/AWS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/AWS.tsx -------------------------------------------------------------------------------- /components/icons/Anthropic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Anthropic.tsx -------------------------------------------------------------------------------- /components/icons/Arduino.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Arduino.tsx -------------------------------------------------------------------------------- /components/icons/Arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Arrow.tsx -------------------------------------------------------------------------------- /components/icons/Astro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Astro.tsx -------------------------------------------------------------------------------- /components/icons/Azure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Azure.tsx -------------------------------------------------------------------------------- /components/icons/Bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Bootstrap.tsx -------------------------------------------------------------------------------- /components/icons/CPlusPlus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/CPlusPlus.tsx -------------------------------------------------------------------------------- /components/icons/CloseMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/CloseMenu.tsx -------------------------------------------------------------------------------- /components/icons/Cron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Cron.tsx -------------------------------------------------------------------------------- /components/icons/DarkMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/DarkMode.tsx -------------------------------------------------------------------------------- /components/icons/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Discord.tsx -------------------------------------------------------------------------------- /components/icons/Docker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Docker.tsx -------------------------------------------------------------------------------- /components/icons/Electron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Electron.tsx -------------------------------------------------------------------------------- /components/icons/Excalidraw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Excalidraw.tsx -------------------------------------------------------------------------------- /components/icons/ExpressJS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/ExpressJS.tsx -------------------------------------------------------------------------------- /components/icons/Eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Eye.tsx -------------------------------------------------------------------------------- /components/icons/FastAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/FastAPI.tsx -------------------------------------------------------------------------------- /components/icons/Figma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Figma.tsx -------------------------------------------------------------------------------- /components/icons/Firebase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Firebase.tsx -------------------------------------------------------------------------------- /components/icons/FramerMotion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/FramerMotion.tsx -------------------------------------------------------------------------------- /components/icons/Git.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Git.tsx -------------------------------------------------------------------------------- /components/icons/GitHubCopilot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/GitHubCopilot.tsx -------------------------------------------------------------------------------- /components/icons/Github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Github.tsx -------------------------------------------------------------------------------- /components/icons/Gitlab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Gitlab.tsx -------------------------------------------------------------------------------- /components/icons/Golang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Golang.tsx -------------------------------------------------------------------------------- /components/icons/GoogleSuite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/GoogleSuite.tsx -------------------------------------------------------------------------------- /components/icons/GraphQL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/GraphQL.tsx -------------------------------------------------------------------------------- /components/icons/Hono.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Hono.tsx -------------------------------------------------------------------------------- /components/icons/JavaScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/JavaScript.tsx -------------------------------------------------------------------------------- /components/icons/Jest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Jest.tsx -------------------------------------------------------------------------------- /components/icons/Laravel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Laravel.tsx -------------------------------------------------------------------------------- /components/icons/LightMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/LightMode.tsx -------------------------------------------------------------------------------- /components/icons/Linear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Linear.tsx -------------------------------------------------------------------------------- /components/icons/Linkedin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Linkedin.tsx -------------------------------------------------------------------------------- /components/icons/MongoDB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/MongoDB.tsx -------------------------------------------------------------------------------- /components/icons/NestJS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/NestJS.tsx -------------------------------------------------------------------------------- /components/icons/NextJS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/NextJS.tsx -------------------------------------------------------------------------------- /components/icons/NodeJS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/NodeJS.tsx -------------------------------------------------------------------------------- /components/icons/Notion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Notion.tsx -------------------------------------------------------------------------------- /components/icons/Npm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Npm.tsx -------------------------------------------------------------------------------- /components/icons/Obsidian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Obsidian.tsx -------------------------------------------------------------------------------- /components/icons/OpenAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/OpenAI.tsx -------------------------------------------------------------------------------- /components/icons/OpenMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/OpenMenu.tsx -------------------------------------------------------------------------------- /components/icons/Play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Play.tsx -------------------------------------------------------------------------------- /components/icons/Playwright.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Playwright.tsx -------------------------------------------------------------------------------- /components/icons/Pnpm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Pnpm.tsx -------------------------------------------------------------------------------- /components/icons/PostgreSQL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/PostgreSQL.tsx -------------------------------------------------------------------------------- /components/icons/PowerShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/PowerShell.tsx -------------------------------------------------------------------------------- /components/icons/Prisma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Prisma.tsx -------------------------------------------------------------------------------- /components/icons/Python.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Python.tsx -------------------------------------------------------------------------------- /components/icons/RHLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/RHLogo.tsx -------------------------------------------------------------------------------- /components/icons/ReactJS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/ReactJS.tsx -------------------------------------------------------------------------------- /components/icons/ReactTestingLibrary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/ReactTestingLibrary.tsx -------------------------------------------------------------------------------- /components/icons/Redux.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Redux.tsx -------------------------------------------------------------------------------- /components/icons/Rust.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Rust.tsx -------------------------------------------------------------------------------- /components/icons/SaSS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/SaSS.tsx -------------------------------------------------------------------------------- /components/icons/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Schedule.tsx -------------------------------------------------------------------------------- /components/icons/Sequelize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Sequelize.tsx -------------------------------------------------------------------------------- /components/icons/Slack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Slack.tsx -------------------------------------------------------------------------------- /components/icons/Soon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Soon.tsx -------------------------------------------------------------------------------- /components/icons/Storybook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Storybook.tsx -------------------------------------------------------------------------------- /components/icons/StyledComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/StyledComponents.tsx -------------------------------------------------------------------------------- /components/icons/Supabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Supabase.tsx -------------------------------------------------------------------------------- /components/icons/Swagger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Swagger.tsx -------------------------------------------------------------------------------- /components/icons/TailwindCSS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/TailwindCSS.tsx -------------------------------------------------------------------------------- /components/icons/ThunderClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/ThunderClient.tsx -------------------------------------------------------------------------------- /components/icons/Turborepo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Turborepo.tsx -------------------------------------------------------------------------------- /components/icons/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Twitter.tsx -------------------------------------------------------------------------------- /components/icons/TypeScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/TypeScript.tsx -------------------------------------------------------------------------------- /components/icons/VSCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/VSCode.tsx -------------------------------------------------------------------------------- /components/icons/Vercel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Vercel.tsx -------------------------------------------------------------------------------- /components/icons/Vim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Vim.tsx -------------------------------------------------------------------------------- /components/icons/Vite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Vite.tsx -------------------------------------------------------------------------------- /components/icons/Windows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Windows.tsx -------------------------------------------------------------------------------- /components/icons/WindowsTerminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/WindowsTerminal.tsx -------------------------------------------------------------------------------- /components/icons/Zoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/Zoom.tsx -------------------------------------------------------------------------------- /components/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/icons/index.tsx -------------------------------------------------------------------------------- /components/images/rh-profile-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/images/rh-profile-image.tsx -------------------------------------------------------------------------------- /components/layouts/app-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/layouts/app-layout.tsx -------------------------------------------------------------------------------- /components/layouts/social-links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/layouts/social-links.tsx -------------------------------------------------------------------------------- /components/layouts/top-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/layouts/top-bar.tsx -------------------------------------------------------------------------------- /components/links/footer-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/links/footer-link.tsx -------------------------------------------------------------------------------- /components/links/header-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/links/header-link.tsx -------------------------------------------------------------------------------- /components/links/link-with-arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/links/link-with-arrow.tsx -------------------------------------------------------------------------------- /components/mdx/a/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/mdx/a/index.tsx -------------------------------------------------------------------------------- /components/mdx/blockquote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/mdx/blockquote/index.tsx -------------------------------------------------------------------------------- /components/mdx/heading/h1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/mdx/heading/h1.tsx -------------------------------------------------------------------------------- /components/mdx/heading/h2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/mdx/heading/h2.tsx -------------------------------------------------------------------------------- /components/mdx/heading/h3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/mdx/heading/h3.tsx -------------------------------------------------------------------------------- /components/mdx/heading/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Railly/website/HEAD/components/mdx/heading/utils.tsx -------------------------------------------------------------------------------- /components/mdx/hr/index.tsx: -------------------------------------------------------------------------------- 1 | export function Hr() { 2 | return