Neo Vision
  • Services
  • Work
  • About
  • Ebooks
  • Careers
  • Blog
  • Contact
  • Home
  • About
  • Ebooks
  • Services
  • Careers
  • Work
  • Blog
  • Contact

Our socials

  • Linkedin
  • Youtube
  • Twitter
  • Facebook
  • Instagram
  • Sortlist

Our address

Bulevardul Unirii Nr. 61, Bloc F3, Scara 3, Etaj 6, Sector 3, 030167
Bucharest, Romania

Our contact

  • hello@neovision.dev
What we found on the web
Neo Vison Interview with Ziarul Financiar
from Ziarul Financiar
Check it out
Back

Dealul cu Afine 1.0

An organic blueberry farm based in Fagaras, Romania. Founded by former creative excellence executive at Coca-Cola and CMO at Airbnb, Ajay Naqvi, Dealul cu Afine is always a click away from their customers and it untangles the whole process of buying organic goods online.

2018 - Present
Dealul cu Afine

Debrief

The objective of the project was to create a website that facilitates the acquisition of organic foods while also tackling the communication issues arising between the buyer and the seller regarding delivery terms.

  • Client Dealul cu Afine
  • Design Neo Vision
  • Roles Product strategy,
    Frontend Development,
    Backend Development,
    Continuous Integration

The Process

digital-strategy-icon

Digital Strategy

  • Product Discovery Workshop
  • Business Process Analysis
  • GDPR Audit
  • SRSD (Software Requirements Specifications Document)
  • GIT, Issue Tracking and Development Server
  • Product Prototype
delivery-icon

Development

  • Front-end Development
  • Back-end Development
  • API Integrations
  • Feedback and Revisions implementation
  • Internal Testing
development-icon

Delivery & Expansion

  • Production Server Deployment
  • Maintenance and Administration

What we used

wordpress-icon

Wordpress

The most popular open source Content Management System (CMS), used by approximately 75 million websites. WordPress is free to install, deploy, and upgrade.

HTML5-white-svg-5

HTML

HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page's appearance/presentation (CSS) or functionality/behavior (JavaScript).

css-logo-icon

CSS

HTML defines content, CSS decorates it and helps tell how it is displayed. CSS stands for Cascading Stylesheet. This means that there is a hierarchy of style attributes overwriting other attributes that affect the same elements.

JavaScript-white-svg3

JavaScript

JavaScript is a computer-readable language that has many uses, most notably in web pages. JavaScript is "read" or interpreted by your browser, like Chrome or Firefox, which executes the instructions. JavaScript enhances the web page by allowing it to become more "interactive."

MySQL_white-svg

MySQL

MySQL is the world's most popular open source database. Whether you are a fast growing web property, technology ISV or large enterprise, MySQL can cost-effectively help you deliver high performance, scalable database applications.

CentOS_logo-white-svg

Cent OS

The CentOS Linux distribution is a stable, predictable, manageable and reproducible platform derived from the sources of Red Hat Enterprise Linux (RHEL).

Gitlab-white-svg-2

GitLab

A repository is what you use to store your codebase in GitLab and change it with version control.

The result

https://neovision.dev/wp-content/uploads/2020/09/Dealul-Cu-Afine-Final-1.m4v
Dealul cu Afine
  • Thousands of blueberries handpicked
  • 300 hours of work
  • 7 API Integrations
Dealul cu Afine
Dealul cu Afine
Dealul cu Afine
Dealul cu Afine
Dealul cu Afine
We implemented the whole process for buying, product information and order status in a single page without compromising the main objective of creating a very simple and intuitive experience for users. We integrated SMS/E-mail alerts for each step of the order. The whole process of generating product/stock and managing orders has been personalized and adapted to the business system of a farm.

We assisted in the creation of the “Dealul cu Afine” brand, which has become one of the most loved family brands in Romania. The orders increased from 300 in the first season since its launch (2018) to 2800 in 2020.

Next project
Appreciate.me
View
Neo Vision

Our socials

  • Linkedin
  • Youtube
  • Twitter
  • Facebook
  • Instagram
  • Sortlist

Our address

Bulevardul Unirii Nr. 61, Bloc F3, Scara 3, Etaj 6, Sector 3, 030167
Bucharest, Romania

Our contact

  • hello@neovision.dev

Footer menu

  • Terms & Conditions
  • Privacy Policy
  • Cookie Policy
© 2015 - 2022 Neo Vision Technologies. All rights reserved.
<?php /* Template Name: Homepage */ ?>

<?php

// Get terms
$size_terms = get_terms([
    'taxonomy' => wc_attribute_taxonomy_name('size'),
    'hide_empty' => true
]);
$week_terms = get_terms([
    'taxonomy' => wc_attribute_taxonomy_name('week'),
    'hide_empty' => true
]);

// Remove unwanted terms
$size_terms = array_filter($size_terms, function ($size_term) {
    return $size_term->name !== '1l';
});
$week_terms = array_filter($week_terms, function ($week_term) {
    $show_homepage = get_field('show_homepage', $week_term->taxonomy . '_' . $week_term->term_id);
    if ($show_homepage === 'no') {
        return false;   
    }
    $weeks = explode(' - ', $week_term->name);
    return $weeks[1] > date('Y-m-d');
});

// Sort terms
usort($size_terms, function ($a, $b) {
    return intval(preg_replace('/[^0-9]/', '', $a->name)) > intval(preg_replace('/[^0-9]/', '', $b->name));
});
usort($week_terms, function ($a, $b) {
    return $a->name > $b->name;
});

// Get weather data
delete_transient('weather_data');
$weather_data = get_transient('weather_data');
if ($weather_data === false) {
    $response = wp_remote_get('https://api.openweathermap.org/data/2.5/weather?q=Mandra,RO&units=metric&appid=5efc0894de294ef5a11843503ff3edf6');
    if (!is_wp_error($response)) {
        $weather_data = json_decode($response['body']);
        if ($weather_data->cod === 200) {
            set_transient('weather_data', $weather_data, HOUR_IN_SECONDS);
        }
    }
}