Skip to content

r0mankeys/UXtoolbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UXtoolbox  🧰

My Skills

Description

This project is still very much in it's infnacy, but the goal is to create a toolbox for web-developers to use styled components that follow best accessibility practices

This project was also a way for me to learn how to use different technogoies, Most of this stack is new to me (I used Twind instead of TailwindCSS directly) and I have to say I love using JSX on the server side. And Typescript is a godsend.

Setup

clone the repository and run the following command in the terminal:

touch .env && echo "PORT=<port>\nHOST=<host>" > .env

then make the server.ts file look similar to the following

import dotenv from "npm:dotenv";
import process from "node:process"

import app from "./index.tsx"

dotenv.config()

Deno.serve({ hostname: String(process.env.HOST), port: Number(process.env.PORT) }, app.fetch)

Goals

  • Deploy MVP
  • Create a component with a detailed example for the Loading Screen

Problems

  • Serving the static files (favicon.svg) upon deployment

About

A collection of UX features I like

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published