Add portfolio grid with 15 case studies and reusable template

This commit is contained in:
Ovidiu U
2026-03-13 11:16:10 +00:00
parent 8a755e6361
commit 123830a27e
6 changed files with 617 additions and 350 deletions

130
index.php
View File

@@ -1,72 +1,74 @@
<?php
$title = 'Ovidiu Ungureanu — Web Developer';
$description = 'PHP & MySQL developer based in the UK. Custom web applications, ERP systems, and freelance web development.';
require __DIR__ . '/includes/header.php';
$title = 'Ovidiu Ungureanu — Web Developer';
$description = 'PHP/MySQL developer based in Peterborough. I build custom web apps, ERP systems, and backends for businesses that need something specific.';
require __DIR__.'/includes/header.php';
?>
<header class="hero">
<div class="hero-label">Web Developer — UK</div>
<h1>Ovidiu<br>Ungureanu</h1>
<p class="hero-sub">I build web applications that work.<br>PHP, MySQL, clean code, no nonsense.</p>
<div class="hero-cta">
<a href="/portfolio" class="btn">View Work →</a>
<a href="#contact" class="btn btn-ghost">Get in Touch</a>
</div>
</header>
<header class="hero">
<div class="hero-label">Web Developer — UK</div>
<h1>Ovidiu<br>Ungureanu</h1>
<p class="hero-sub">I build web applications that work.<br>PHP, MySQL, clean code, no nonsense.</p>
<div class="hero-cta">
<a href="/portfolio" class="btn">View Work →</a>
<a href="#contact" class="btn btn-ghost">Get in Touch</a>
</div>
</header>
<section id="about" class="section">
<div class="section-label">001 — About</div>
<div class="section-content">
<p class="large-text">I'm a PHP/MySQL developer based in the UK, building custom web applications and backend systems. I run a small web agency focused on delivering practical, well-built solutions.</p>
<p>My work ranges from custom ERP platforms to freelance web projects. I care about performance, maintainability, and getting things done right the first time. No frameworks for the sake of frameworks. No unnecessary complexity.</p>
</div>
</section>
<section id="about" class="section">
<div class="section-label">001 — About</div>
<div class="section-content">
<p class="large-text">I'm a PHP/MySQL developer based in Peterborough. I build custom web apps, backend systems, and the kind of tools businesses actually need but can't find off the shelf.</p>
<p>Most of my work is ERP systems, booking tools, and bespoke admin backends. I use PHP and MySQL because they're the right tools for what I build — not because I haven't heard of anything else. Performance matters. So does code you can actually read six months later.</p>
</div>
</section>
<section id="services" class="section">
<div class="section-label">002 — Services</div>
<div class="services-grid">
<div class="service-item">
<span class="service-num">01</span>
<h3>Custom Web Applications</h3>
<p>Bespoke PHP applications built to your exact requirements. Backend systems, admin panels, data management tools.</p>
</div>
<div class="service-item">
<span class="service-num">02</span>
<h3>Database Design & Optimisation</h3>
<p>MySQL schema design, query optimisation, and performance tuning. Making slow systems fast.</p>
</div>
<div class="service-item">
<span class="service-num">03</span>
<h3>Website Development</h3>
<p>Clean, responsive websites. HTML, CSS, JavaScript, Vue.js. Built to load fast and work everywhere.</p>
</div>
<div class="service-item">
<span class="service-num">04</span>
<h3>Legacy System Modernisation</h3>
<p>Upgrading and refactoring existing PHP codebases. Improving what you already have without starting over.</p>
</div>
</div>
</section>
<section id="services" class="section">
<div class="section-label">002 — Services</div>
<div class="services-grid">
<div class="service-item">
<span class="service-num">01</span>
<h3>Custom Web Applications</h3>
<p>Built to your spec, not adapted from a template. Admin panels, internal tools, whatever the business actually needs.</p>
</div>
<div class="service-item">
<span class="service-num">02</span>
<h3>Database Design & Optimisation</h3>
<p>Schema design, query optimisation, performance tuning. If your database is the bottleneck, I'll find it.</p>
</div>
<div class="service-item">
<span class="service-num">03</span>
<h3>Website Development</h3>
<p>HTML, CSS, JavaScript, Vue.js. Loads fast, works on every device — no unnecessary weight.</p>
</div>
<div class="service-item">
<span class="service-num">04</span>
<h3>Legacy System Modernisation</h3>
<p>Old PHP codebase that's become painful to work with? I refactor and modernise without burning everything down.</p>
</div>
</div>
</section>
<section class="section section-cta">
<div class="section-label">003 — Work</div>
<div class="section-content">
<p class="large-text">Selected projects and client work.</p>
<a href="/portfolio" class="btn">View Portfolio →</a>
</div>
</section>
<section class="section section-cta">
<div class="section-label">003 — Work</div>
<div class="section-content">
<p class="large-text">A few recent builds.</p>
<a href="/portfolio" class="btn">View Portfolio →</a>
</div>
</section>
<section id="contact" class="section">
<div class="section-label">004 — Contact</div>
<div class="section-content">
<p class="large-text">Got a project in mind?</p>
<a href="mailto:hello@uovidiu.com" class="contact-email">hello@uovidiu.com</a>
<div class="contact-details">
<span>Peterborough, UK</span>
<span>·</span>
<span>Available for freelance</span>
</div>
</div>
</section>
<section id="contact" class="section">
<div class="section-label">004 — Contact</div>
<div class="section-content">
<p class="large-text">Got a project in mind?</p>
<a href="mailto:hello@uovidiu.com" class="contact-email">hello@uovidiu.com</a>
<div class="contact-details">
<span>Peterborough, UK</span>
<span>·</span>
<span>Available for freelance</span>
</div>
</div>
</section>
<?php require __DIR__ . '/includes/footer.php'; ?>
<?php
require __DIR__.'/includes/footer.php'; ?>