Skip to content

Instantly share code, notes, and snippets.

View aaronbentley's full-sized avatar
🐵
Updating...

Aaron Bentley aaronbentley

🐵
Updating...
View GitHub Profile
@aaronbentley
aaronbentley / availability.ts
Created October 3, 2024 10:15
Proposed types and demo data for vendor & menu availability
/**
* Define availability types
*/
export type TAvailability = {
monday?: TTimeSlot[]
tuesday?: TTimeSlot[]
wednesday?: TTimeSlot[]
thursday?: TTimeSlot[]
friday?: TTimeSlot[]
saturday?: TTimeSlot[]
@aaronbentley
aaronbentley / ukraine-colors.js
Created February 25, 2022 09:46
Ukraine flag color scales
/**
* 🇺🇦 Ukraine flag color scales
*/
export default {
colors: {
primary: {
50: '#ddf3ff',
100: '#afd7ff',
200: '#7ebcff',
300: '#4da1ff',
@aaronbentley
aaronbentley / aop-icon-white-symbol.html
Created February 9, 2021 15:26
AOP Icon - White Symbol Variant
<img
style="width: 120px; height: 120px"
src="https://assets.nosy.marketing/aop/assets/svg/white/AOP_ICON_Symbol_White.svg"
alt="AOP Icon symbol" />
@aaronbentley
aaronbentley / aop-icon-white-simple.html
Created February 9, 2021 15:23
AOP Icon - White Simple Variant
<img
style="width: 190px; height: 80px"
src="https://assets.nosy.marketing/aop/assets/svg/white/AOP_ICON_White.svg"
alt="AOP Icon simple logo" />
@aaronbentley
aaronbentley / aop-icon-white-full.html
Created February 9, 2021 15:21
AOP Icon - White Full Variant
<img
style="width: 189px; height: 98px"
src="https://assets.nosy.marketing/aop/assets/svg/white/AOP_ICON_Full_White.svg"
alt="AOP Icon full logo" />
@aaronbentley
aaronbentley / aop-icon-black-symbol.html
Last active February 9, 2021 15:22
AOP Icon - Black Symbol Variant
<img
style="width: 120px; height: 120px"
src="https://assets.nosy.marketing/aop/assets/svg/black/AOP_ICON_Symbol_Black.svg"
alt="AOP Icon symbol" />
@aaronbentley
aaronbentley / aop-icon-black-simple.html
Last active February 9, 2021 15:22
AOP Icon - Black Simple Variant
<img
style="width: 190px; height: 80px"
src="https://assets.nosy.marketing/aop/assets/svg/black/AOP_ICON_Black.svg"
alt="AOP Icon simple logo" />
@aaronbentley
aaronbentley / aop-icon-black-full.html
Last active February 9, 2021 15:17
AOP Icon - Black Full Variant
<img
style="width: 189px; height: 98px"
src="https://assets.nosy.marketing/aop/assets/svg/black/AOP_ICON_Full_Black.svg"
alt="AOP Icon full logo" />