Skip to content
View ashdeck's full-sized avatar

Block or report ashdeck

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
ashdeck/README.md

About Us

Ashdeck is an open-source productivity app that blocks distractions and enhances focus. It transforms your browser into a personalized dashboard to help you stay calm, track progress, set goals, and build efficient work habits—ultimately boosting productivity and control.

React + TypeScript + Vite

Introduction

How to run

  1. npm install

  2. npm run dev

Please try to study the code structure for easy collaboration. I included abstractions to mimic a Next.js file router by making use of generouted.

If you need to read on generouted, please visit the documentation

I also included ready made components that are easy to use e.g:

  • CustomButton: Button component
  • FormInput: Input component for basic text. works well with React-hook-forms

etc.

Packages:

  • Axios
  • Prettier
  • React-hook-forms
  • Icon - IconSax
  • React hot toast
  • Zustand (Pleaseeee let's consider it.. it's very simple to use, check out the store folder)
  • Tanstack Query

Custom Wrappers/Abstractions

  • Custom Router (Wrapper around react-router-dom), the router is already setup to work with generouted.
    Folder: commons/router
    Usage:
    import { useRouter } from '@router';
    // You can import eevry thing importable from react-router-dom from "@router"
    
    const router = useRouter();
    
    router.push('/users');
    router.replace('/settings');
  • API Object (Wrapper around Axios)
    File: commons/utils/axiosProvider.ts
    Usage:
    import {api} from '@utils/axiosProvider';
    api.get('/users').then((res) => console.log(res));
    api.post('/users', {name:"William"}).then((res) => console.log(res));

Pinned Loading

  1. ashdeck ashdeck Public

    Ashdeck is open source productivity app for blocking distractions and boasting focus.

    TypeScript 9 6