dunky11
|
6 years ago
|
on: Show HN: I created a SaaS/Admin template using React
dunky11
|
6 years ago
|
on: 6 months in and $1k MRR: my biggest mistakes so far
I would change the footer of your website. The yellow background / white text combination is really hard on the eye. I would switch to a lighter shade of yellow for the background and black text instead.
dunky11
|
6 years ago
|
on: Show HN: Animating randomized L-Systems in real time
Just a detail on styling. The white text/ black background combination is kind of hard on the eye since it's too much contrast. I would use a lighter shade of black for the background. Something like #0f0f0f would work.
dunky11
|
6 years ago
|
on: Launch HN: Datasaur (YC W20) – data labeling interface for NLP
dunky11
|
6 years ago
|
on: Show HN: Fluxo – Build a financial model in minutes, not days
On smaller viewports the footer has a left and right margin of 15px. I would drop that and always make the footer fill 100% of the width.
dunky11
|
6 years ago
|
on: Show HN: Fluxo – Build a financial model in minutes, not days
Or maybe just drop the background effect on hover and add the underline effect to the mobile navigation on hover.
dunky11
|
6 years ago
|
on: Show HN: Fluxo – Build a financial model in minutes, not days
I think you have problems with the mobile navigation now :)
The hover effect makes the background white, however the text is now white too. I would do somethink like: .navigation:hover {
border: 2px solid white;
margin: -2px;
}
And tweak the border-radius/border-color a little bit maybe. The hover effect on the non mobile navigation is fine.
dunky11
|
6 years ago
|
on: Show HN: Fluxo – Build a financial model in minutes, not days
Also the buttons at the top inside the navgation (HOW IT WORKS, PRICING, DOCS, SIGN IN) have too little contrast with the blue background. There are white but have an opacity of 0.6. Set the opacity to 1 and they look much better. Add maybe a border effect on hover.
dunky11
|
6 years ago
|
on: Show HN: Fluxo – Build a financial model in minutes, not days
At the subscription plans you have a weird looking outer border which wraps the four plans. I would just drop it, looks much better without it.
dunky11
|
6 years ago
|
on: Launch HN: Release (YC W20) – Staging environments made easy
The website is really slow. You got images which are 3700px in width and 1.2mb large on the landing page. You should resize them to the width you really need, probably 1000px in width max. Use .png for images which are transparent and .jpg for images which are not. Also don't forget to compress them. Google Chromes Lighthouse shows an optimization of 16seconds on 4G mobile by resizing/compressing images alone.