Skip to content
View ibodev1's full-sized avatar
🚀
🚀

Block or report ibodev1

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ibodev1/README.md

👋 Hi, I'am Ibrahim.

.me {
  name: ibrahim;
  surname: odev;
  from: Konya, Turkey;
  date-of-birth: 2005;
  
  .social-media {
    twitter: @ibodev1;
    linkedin: in/ibrahimodev;
    google-dev: ibodev;
  }
}

Pinned Loading

  1. tailwindcss-palette-generator tailwindcss-palette-generator Public

    Color palette generation library for TailwindCSS.

    TypeScript 15

  2. hackernews hackernews Public

    HackerNews API | Y Combinator News API

    TypeScript 18 2

  3. https://github.com/SoloJSX/SoloJSX/b... https://github.com/SoloJSX/SoloJSX/blob/main/dist/index.js
    1
    // Base type for HTML or Text Node
    2
    interface JSXNode {
    3
        type: string; // The HTML tag (e.g., 'div', 'span', etc.)
    4
        props?: JSXProps; // Attributes and event listeners
    5
        children?: (JSXNode | JSXTextNode)[]; // Nested children nodes (elements or text nodes)