├── README.md └── compositor.json /README.md: -------------------------------------------------------------------------------- 1 | # hack-mosaic-website 2 | Website for hackmosaic.com 3 | -------------------------------------------------------------------------------- /compositor.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iheanyi/hack-mosaic-website", 3 | "version": "0.1.4", 4 | "libraries": { 5 | "xv": "^1.1.25" 6 | }, 7 | "title": "Hack Mosaic", 8 | "branch": "master", 9 | "style": { 10 | "name": "Swiss", 11 | "componentSet": { 12 | "nav": "nav/BasicNav", 13 | "header": "header/SwissHeader", 14 | "article": "article/SwissArticle", 15 | "footer": "footer/BasicFooter" 16 | }, 17 | "fontFamily": "\"Helvetica Neue\", Helvetica, Arial, sans-serif", 18 | "heading": { 19 | "fontWeight": 700, 20 | "letterSpacing": "-0.01em" 21 | }, 22 | "layout": { 23 | "fluid": true 24 | }, 25 | "colors": { 26 | "text": "#000", 27 | "background": "#fff", 28 | "primary": "#05a", 29 | "secondary": "#444", 30 | "highlight": "#f30", 31 | "border": "#ccc", 32 | "muted": "#eee" 33 | } 34 | }, 35 | "content": [ 36 | { 37 | "component": "nav", 38 | "links": [ 39 | { 40 | "href": "http://hackmosaic.com", 41 | "text": "Home" 42 | }, 43 | { 44 | "href": "https://github.com/iheanyi/hack-mosaic-website", 45 | "text": "GitHub" 46 | } 47 | ] 48 | }, 49 | { 50 | "component": "header", 51 | "heading": "Hack Mosaic", 52 | "subhead": "A meetup for software engineers of color.", 53 | "children": [ 54 | { 55 | "component": "ui/TweetButton", 56 | "text": "hack-mosaic-website: Website for Hack Mosaic", 57 | "url": "http://hackmosaic.com" 58 | }, 59 | { 60 | "component": "ui/GithubButton", 61 | "user": "iheanyi", 62 | "repo": "hack-mosaic-website" 63 | } 64 | ], 65 | "text": "", 66 | "links": [] 67 | }, 68 | { 69 | "component": "footer", 70 | "links": [ 71 | { 72 | "href": "https://github.com/iheanyi/hack-mosaic-website", 73 | "text": "GitHub" 74 | }, 75 | { 76 | "href": "https://github.com/iheanyi", 77 | "text": "iheanyi" 78 | } 79 | ] 80 | } 81 | ] 82 | } --------------------------------------------------------------------------------