https://redradix-icons.vercel.app/
A common style for a strong identity.
The gradient and overlapping layers is a very present element in the RedRadrix identity, so we took it as a differentiating element and basis for the creation of the icon library.
Next, we looked for libraries that also played with gradients as inspiration.
The user's browsing environment is not predictable. That's the idea of "intrinsic web design," an idea based on a 2018 talk by Jen Simmons. It's all about the use of adaptive design techniques, using mainly flexbox and grid in combination with newer units and functions in a way that allows our designs to adapt at different rates to the available space.
There are no breakpoints on this website. The layout adapts to the available space, and the content adapts to the layout.
The site aims to be accessible and usable for all people regardless of any disability.
WIP!
- should the top scroll also readjust the focus?
- What's the best way to navigate through a lot of icons and their export options using keyboard / AT?
- Missing visual indicator that icon was copied to clipboard
- Optimized meta structure
- Lightweight
- Optimized scripts, fonts and SVG
- Caching
- CDN
We define a set of functions to fetch and process icons from a Figma design file.
This website uses modern CSS, fluid type & space, flexible layouts and the idea of Progressive Enhancement.
- CSS Methodology: CUBE
- Layout components: every-layout.dev
- Tailwind: Not used in its original functionality, but as a generator for personalized utility classes, based on our design tokens.
This website uses Astro. We just started learning this system, so the benefits are not yet fully integrated.
/
├── public/
│ ├── favicon.svg
│ ├── fonts/*
│ │
├── src/
│ ├── app/
│ │ ├── icons/*
│ │ └── enhancedFetch.js
│ │
│ ├── assets/
│ │ ├── css/*
│ │ ├── css-utils/*
│ │ └── design-tokens/*
│ │
│ ├── components/
│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
│
└── package.json
Astro looks for .astro
or .md
files in the src/pages/
directory. Each page is exposed as a route based on its file name.
In src/components/
, we put any Astro/React/Vue/Svelte/Preact component.
Any static assets, like images, can be placed in the public/
directory.
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
npm install |
Installs dependencies |
npm run start |
Starts local dev server at localhost:3000 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add , astro check |
npm run astro --help |
Get help using the Astro CLI |