119 lines
5.5 KiB
HTML
119 lines
5.5 KiB
HTML
<!-- v2a -->
|
|
|
|
{% extends 'layouts/layout.html' %}
|
|
|
|
{% block page_head %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='dist/css/core_home.bundle.css') }}">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
|
|
{% endblock %}
|
|
|
|
{% block page_nav_links %}
|
|
<a href="#services">Services</a>
|
|
<a href="#testimonial">Testimonial</a>
|
|
<a href="#pricing">Pricing</a>
|
|
<a href="{{ model.HASH_PAGE_CONTACT }}" class="{{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_PRIMARY }}">Contact Us</a>
|
|
{% endblock %}
|
|
|
|
{% block page_body %}
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="hero-content" data-aos="fade-up">
|
|
<h1>Transform Your Business with Modern ERP Solutions</h1>
|
|
<p>UK-based ERPNext specialist providing integrated ERP and e-commerce solutions. 5+ years experience implementing systems for builders merchants and automotive companies.</p>
|
|
<a href="{{ model.HASH_PAGE_CONTACT }}" class="{{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_PRIMARY }}">Book Consultation</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="services" class="services">
|
|
<div class="container">
|
|
<h2 class="section-title text-center">Our Services</h2>
|
|
<p class="section-subtitle text-center">Enterprise-grade solutions at SMB-friendly prices</p>
|
|
|
|
<div class="services-grid">
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="100">
|
|
<h3>Implementation Services</h3>
|
|
<p>Full ERPNext implementation including setup, configuration, and training. We ensure a smooth transition to your new ERP system.</p>
|
|
</div>
|
|
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="200">
|
|
<h3>Integration & Migration</h3>
|
|
<p>Seamlessly migrate your existing data and integrate ERPNext with your current business applications and workflows.</p>
|
|
</div>
|
|
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="300">
|
|
<h3>Hosting Services</h3>
|
|
<p>Secure, reliable cloud hosting with regular backups and maintenance to keep your ERP system running smoothly.</p>
|
|
</div>
|
|
|
|
<div class="service-card" data-aos="fade-up" data-aos-delay="400">
|
|
<h3>Custom Extensions</h3>
|
|
<p>Tailored app development and customizations to extend ERPNext functionality according to your specific requirements.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{#
|
|
<section id="testimonial" class="testimonial">
|
|
<div class="container">
|
|
<h2 class="section-title text-center">Client Success Story</h2>
|
|
<p class="section-subtitle text-center">See how we've helped other businesses succeed</p>
|
|
|
|
<div class="testimonial-card" data-aos="fade-up">
|
|
<p>"The ERPNext implementation has revolutionized our operations. The integrated e-commerce system has streamlined our entire sales process, and the team's support has been exceptional throughout our journey."</p>
|
|
<p><strong>- 4 Shires Builders Merchants</strong></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
#}
|
|
|
|
<section id="pricing" class="pricing">
|
|
<div class="container">
|
|
<h2 class="section-title text-center">Simple, Transparent Pricing</h2>
|
|
<p class="section-subtitle text-center">Everything you need to run your business efficiently</p>
|
|
|
|
<div class="pricing-card" data-aos="fade-up">
|
|
<h3>Implementation</h3>
|
|
<div class="price">From £10,000</div>
|
|
<p>One-time setup fee based on business size</p>
|
|
<ul style="list-style: none; margin: 2rem 0;">
|
|
<li>✓ Full ERP & e-commerce setup</li>
|
|
<li>✓ Product catalogue configuration</li>
|
|
<li>✓ Staff training</li>
|
|
<li>✓ Data migration</li>
|
|
</ul>
|
|
|
|
<h3>Monthly Support & Hosting</h3>
|
|
<div class="price">£200</div>
|
|
<p>12-month minimum term, billed annually at £2,400</p>
|
|
<ul style="list-style: none; margin: 2rem 0;">
|
|
<li>✓ Unlimited support tickets</li>
|
|
<li>✓ Cloud hosting (99.9% uptime)</li>
|
|
<li>✓ Regular maintenance and system updates</li>
|
|
</ul>
|
|
|
|
<a href="{{ model.HASH_PAGE_CONTACT }}" class="{{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_PRIMARY }}">Get Custom Quote</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta">
|
|
<div class="container">
|
|
<h2 class="section-title">Ready to Transform Your Business?</h2>
|
|
<p class="section-subtitle">Contact us today to discuss your ERP needs</p>
|
|
<a href="{{ model.HASH_PAGE_CONTACT }}" class="{{ model.FLAG_BUTTON }} {{ model.FLAG_BUTTON_LIGHT }}">Book Consultation</a>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CDN -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
AOS.init({
|
|
duration: 1000,
|
|
once: true
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %} |