Did you know? Most web agencies miss deadlines like a stormtrooper misses shots.
30%
Parallax Image

Solytic

Neo Vision collaborated with Solytic, a leader in solar PV digitalization, to build a website that effectively conveys their brand’s vision for an automated, interconnected solar ecosystem.

Parallax Image

Debrief

Client
Solytic
Design
High Contrast & Neo Vision
Role
Product Strategy, UI/UX, Frontend Development, Backend Development, CMS Development, DevOps, Continuous Development

Business Goals

Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image

Product Description

Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image

Development Process

Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image

Backend Development

Neo Vision’s work with Solytic exemplifies a seamless integration of design and technology, creating a platform that captures the brand’s vision while adapting to its evolving needs. The ongoing partnership has transformed Solytic’s website into a dynamic, reliable asset that aligns with its mission to drive solar PV innovation.

Solytic’s platform now provides a unified digital experience that not only attracts a global audience but also enables continuous growth. The scalable backend, integrated SEO, and modular content structure have positioned Solytic as a powerful digital entity in the solar PV industry.

Let
's talk about
yo
ur
project
Solytic Code Snippet
@php $banner = get_field('homepage_banner') @endphp
        <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>
Solytic Code Snippet
@php $banner = get_field('homepage_banner') @endphp
        <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>