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

Solytic

Solytic is a central platform for a decentralized solar PV ecosystem. They are on a mission to take solar PV to the next level using digitalization and automation to reach the full potential of each system.

2020
Solytic desktop screens

Debrief

The objective was to translate High Contrast's impeccable design into a website that perfectly communicates Solytic's ambitious brand.

  • Client High Contrast
  • Design High Contrast
  • Roles Product Strategy,
    Frontend Development,
    Backend Development,
    DevOps,
    Continuous Integration

The Process

digital-strategy-icon

Digital Strategy

  • Full Project Brief
  • Product Discovery Workshop
  • Business Process Analysis
  • GDPR Audit
  • Product Prototype
delivery-icon

Development

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

Delivery & Expansion

  • Production Server Architecture Configuration
  • Production Server Deployment
  • Maintenance and Administration
  • Continuous Development

What we used

wordpress-icon

WordPress

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

css-logo-icon

CSS

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

HTML5-white-svg-5

HTML5

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).

JavaScript-white-svg3

JavaScript

JavaScript is a computer-readable language with 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."

php-icon

PHP

PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for Web Development and can be embedded into HTML.

CentOS_logo-white-svg

CentOS

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

Solytic
  • 14 yoga sessions due to tight deadlines
  • 3 adjusting calls in the day before launch
  • 2 happy clients
Solytic
Solytic
Solytic
Solytic
Solytic
Next project
Klarwin
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.
<div class="homepage">
    @php $banner = get_field('homepage_banner') @endphp
    <div class="homepage-banner">
        <div class="homepage-banner-background">
            <div class="background">
                <video autoplay muted loop playsinline id="background-video">
                    <source src="{{ $banner['background_video'] }}" type="video/mp4">
                </video>
            </div>

            <div class="foreground">
                <video autoplay muted loop playsinline id="foreground-video">
                    <source src="{{ $banner['foreground_video'] }}" type="video/mp4">
                </video>
            </div>
        </div>
        <div class="container">
            <div class="homepage-banner-content">
                <h1 class="homepage-banner-title text-h1">{{ $banner['title'] }}</h1>
                <div class="homepage-banner-text text-body">{{ $banner['text'] }}</div>
                <a href="{{ $banner['button']['page'] }}" class="homepage-banner-button button-cta text-cta">
                    {{ $banner['button']['label'] }}
                </a>
            </div>
        </div>
    </div>

    <div class="homepage-above">
        <div class="container">
            <div class="homepage-logos">
                @foreach (get_field('homepage_logos') as $logo)
                <div class="homepage-logo">
                    {!! App\wp_image($logo['logo'], 'fullhd') !!}
                </div>
                @endforeach
            </div>

            <h3 class="homepage-intro text-h2">{{ get_field('homepage_intro') }}</h3>
        </div>
    </div>
</div>