Skip to main content

Website complete: presojaidej.com

Presojaidej.com is a service that offers reviews of ideas for a competitive price. This being one of my first websites I developed I want to explain my workflow and reasoning while creating it.
Dislaimer: I am only the developer and designer of the website; it is owned by E-amiga, d.o.o.
I was given a lot of freedom regarding the look of the website, so it was an enjoying small project. The only guideline I was given is the general form: the client wanted it to be on one page, so that there are fewer clicks required by the user to order a business idea review.
I wanted to create a website that looked professional and had a large conversion rate (the percentage of users that order the service after visiting the website).
The professional look was achieved with clear lines, and attention to detail: the background patterns, the differences in border colors to imitate slight depth and a snappy feeling on hovering over the buttons among others. The resulting page is easy to scan through and the vision/product is clearly conveyed to the visitor.
The website is designed to sell. I focussed on simplifying the process from visiting to ordering. Hence the large red buttons are used as the single call to action. Once the visitor decides to order, he is sent to a webform, which can be a bit intimidating for the unprepared user. However so much information is required to offer a high quality service that is worth its price. Instead of maintaining a database for the form, I have used a customized Google Forms which gathers all the results in a spreadsheet.
To conclude, I am posting a comparison of the final website and the mockup I created initially and on which I based the developing. On the left side is the initial design created in Fireworks, on the right the final working website.


Comments

  1. You've written a fantastic article. This article provided me with some useful knowledge. Thank you for providing this information. app developer in india

    ReplyDelete
  2. The majority of on-line casinos that help the Korean language even have reside help in Korean. In other phrases, it doesn’t matter which platform (mobile/desktop) you play on. There are not any mobile gambling apps both, as there are no local South Korean on-line casinos. The Won is the official forex of South Korea and it's accepted 메리트카지노 wherever in the country. South Korean gambling legal guidelines clearly make on-line casinos South Korean websites are unlawful and bank card transactions may be simply traced.

    ReplyDelete

Post a Comment

Popular posts from this blog

The Increased Addictiveness of Today's Video Games

This is a guest post by Miles Walker, a freelance writer and blogger who usually  compares car insurance  deals over at CarinsuranceComparison.Org. His most recent review looked at the best  car insurance quotes . Video games have always held some addiction, but now more than ever that addiction is growing. People are spending more time than ever playing the games, and game designers are constantly finding new ways keep it that way. Their efforts have a been a complete success, and some games have true addicts, addicts who play 24 hours a week or more. Visual enhancements Video games have come a long way since a certain duo of Italian plumbers started showing up in people's houses in the late 1980s. By leaps and bounds, video game graphics have become alarmingly sophisticated. Each graphical improvement increased a game's possibilities and added more depth to video games. Designers began thriving on this depth, making games with more achievements, unlocks, levels an

Project planning in a text file

Whenever you work on a project it is important to be able to plan it ahead of time. This holds true for small and big project, from planning a trip to the spa to building a spaceship. The small project plans can be maintained in you thoughts while bigger ones require tools to help you see the big-picture of the project and manage task at a lower level. There are projects which start with a fully prepared plan and projects which pivot overnight, thus invalidating any original plan. For the latter flexibility is very important, and tools like Trello offer a great solution because they can be adjusted to fit your project. However, it may happen sometimes that the project starts adjusting to the tool or that you still want to maintain a bigger picture of the main points of the project. You may also need to produce a rough development schedule to serve as a long term road-map. I have prototyped a tool (and defined a workflow) which allows you to plan such projects. To better understa

Basic cell counting and segmentation in Matlab

Counting cells manually is a tedious error prone process for humans. Given a large data set of microscopy images this task can be achieved much faster by means of basic computer vision techniques. In this tutorial we will segment cells from an image following a method similar to the one presented by Yongming Chen in 1999. The method uses basic morphological operations  and the watershed algorithm to segment the cells. Nowadays better methods for cell segmentation exist. This method was chosen for its simplicity and ease of implementation. We start with an image of cell-like structures by Anna-Katerina Hadjantonakis and Virginia E Papaioannou . A = imread('cells.jpg'); We convert the image to grayscale: I = rgb2gray(A); To be able to extract the dimmer cells, it is necessary to perform some local contrast adjustments I = adapthisteq(I); Objects on the borders can be caused by noise and other artifacts. We can eliminate objects on the borders