75 lines
2.9 KiB
PHP
75 lines
2.9 KiB
PHP
<?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>
|
|
|
|
<section id="about" class="section">
|
|
<div class="section-label">001 — About</div>
|
|
<div class="section-content">
|
|
<p class="large-text">I'm a web developer based in Peterborough. I build websites and online tools for small businesses — things like booking systems, customer dashboards, and the bits that make your day-to-day easier to manage.</p>
|
|
<p>Whether you need a fresh website, an online booking page for your garage, or a simple system to keep track of jobs and customers — I'll build it quickly, affordably, and without the jargon.</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>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">A few recent builds.</p>
|
|
<a href="/portfolio" class="btn">View Work →</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>
|
|
|
|
<?php
|
|
require __DIR__.'/includes/footer.php'; ?>
|