Feedback on my new company website
-
Hi, looking for feedback on my new company website done in Quasar at https://customautosys.com/new
For comparison, the old website is at https://customautosys.com
-
It looks a lot better! But I am not the biggest fan of the 3d gradient menu items. Also the contrast between the teal menu items and the blue background is not good.
When I open the dev console and load the site, there’s a debugger statement that prevents loading the page.
I like from the old site that on desktop you get a normal non hamburger menu. With the new site you always get the hamburger even when you’re not on a small screen device.
-
Thanks @dobbel!
OK I guess the gradients are not modern style. Maybe I will change it.
The dev console is because of my use of webpack-obfuscator (it’s by default in my quasar.conf.js for all my projects).
I’ll look into changing the desktop menu. I was lazy to do a different menu system for desktop.
-
@walfin ah so it spams debugger statements to prevent people from stealing you code? Could you show a sample of how you do that in the quasar.conf.js ?
-
Due to negative feedback I have removed the glossy gradients. Is this better?
https://customautosys.com/new/noglossyextendWebpack(cfg){
if(!ctx.dev&&!ctx.debug&&!ctx.mode.bex){
cfg.plugins.push(new JavaScriptObfuscator({
debugProtection:true,
debugProtectionInterval:true,
rotateStringArray:true,
renameGlobals:true,
stringArrayEncoding:‘rc4’,
stringArrayThreshold:1
}));
}
}
} -
The menu is still too wide for my taste. A lot of “whitespace” / wasted space.
The image in the header is also messed up some. Looks like there are white pixels in there and it ruins the image.
Scott
-
@walfin Thanks for the sample. Yes it looks a lot better!
-
also check the layout builder, your left menu seem to scroll along with the page, check the
view
prop config. https://quasar.dev/layout-builder -
Thanks everyone for the feedback!
Menu width reduced
Cleared the white pixels in the header image
Changed menu to not scroll with the page
Removed hamburger button when page is not belowBreakpointAlso I changed the background to a darker colour so the menu text would stand out more.
So sad that glossy is no longer in vogue. I still like glossy.
-
It’s getting there.
Yeah, glossy went out years ago.
Scott
-
OK, as I think in particular the back end is already a significant improvement over my previous completely static site, I have gone live on https://customautosys.com
Thanks everyone for all your feedback! I’ll be sure to bear it in mind.