Converted all website pages to modern professional theme with consistent design system: ### Pages Converted (21 total): **Menu Pages (10):** - desprenoi.html, contact.html, analiza.html, implementare.html - roa-suport-tehnic.html, alteservicii.html, angajari.html - suport.html, referinte.html, politica-confidentialitate.html **ROA Module Pages (11):** - roa-financiar-contabilitate.html (calculator icon) - roa-resurse-umane.html (users icon) - roa-imobilizari.html (building icon) - roa-gestiune.html (package icon) - roa-contracte-furnizori.html (truck icon) - roa-clienti.html (user-check icon) - roa-horeca.html (utensils icon) - roa-analiza.html (bar-chart-3 icon) - roa-aplicatii-specifice.html (settings icon) - roa-service-auto.html, roa-proiecte-devize.html ### Technical Implementation: - Migrated from Bootstrap 5 to Tailwind CSS + Flowbite - Applied professional-theme.css with soft blue color palette - Integrated Lucide icons for modern iconography - Implemented responsive design with mobile-first approach - Added dark/light theme toggle functionality - Enhanced SEO with Romanian meta descriptions - Maintained all original content and functionality ### Design Features: - Consistent professional navbar with gradient background - Hero sections with appropriate module icons - Professional cards with hover effects and animations - Modern typography using Inter, Merriweather fonts - Unified color scheme: #5288c4 (primary), #4a7ba7 (secondary) - Professional footer with company branding All pages now follow the same professional design system established in index.html. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
213 lines
12 KiB
HTML
213 lines
12 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Angajari - Alatura-te Echipei Romfast</title>
|
|
<meta name="description" content="Informatii despre posturile libere in cadrul companiei Romfast. Contacteaza-ne pentru a afla mai multe despre oportunitatile de cariera.">
|
|
<meta name="keywords" content="angajari it, cariere it, locuri de munca constanta, programator, consultant erp, romfast">
|
|
|
|
<!-- Tailwind CSS -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<!-- Flowbite -->
|
|
<script src="https://cdn.jsdelivr.net/npm/flowbite@2.0.0/dist/flowbite.min.js"></script>
|
|
<!-- Lucide Icons -->
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<!-- Professional Theme CSS -->
|
|
<link href="../professional-theme.css" rel="stylesheet">
|
|
</head>
|
|
<body class="min-h-screen">
|
|
|
|
<!-- Soft Professional Blue Header -->
|
|
<header class="professional-navbar sticky top-0 z-50">
|
|
<nav class="container mx-auto px-4 py-4">
|
|
<div class="flex items-center justify-between">
|
|
<!-- Logo Section -->
|
|
<div class="flex items-center space-x-3">
|
|
<img src="../images/romfast_logo.png" alt="Romfast Logo" class="romfast-logo">
|
|
<div class="hidden md:block">
|
|
<p class="text-white text-sm italic font-light">Aduce informația în mâinile tale</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Centered Navigation -->
|
|
<div class="hidden lg:flex items-center space-x-8">
|
|
<a href="../index.html" class="text-white hover:text-blue-200 transition-colors font-medium nav-link">Prima pagina</a>
|
|
<a href="desprenoi.html" class="text-white hover:text-blue-200 transition-colors nav-link">Despre noi</a>
|
|
<a href="../roa/aplicatii-erp.html" class="text-white hover:text-blue-200 transition-colors nav-link">ROA</a>
|
|
<div class="relative group">
|
|
<button class="text-white hover:text-blue-200 transition-colors flex items-center space-x-1 nav-link">
|
|
<span>Servicii</span>
|
|
<i data-lucide="chevron-down" class="w-4 h-4"></i>
|
|
</button>
|
|
<div class="absolute top-full left-0 mt-2 w-48 bg-white rounded-lg shadow-lg border border-gray-200 opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-300">
|
|
<a href="analiza.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800 rounded-t-lg">Analiza</a>
|
|
<a href="implementare.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800">Implementare</a>
|
|
<a href="roa-suport-tehnic.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800">Suport tehnic ROA</a>
|
|
<a href="alteservicii.html" class="block px-4 py-3 text-gray-700 hover:bg-blue-50 hover:text-blue-800 rounded-b-lg">Alte servicii</a>
|
|
</div>
|
|
</div>
|
|
<a href="referinte.html" class="text-white hover:text-blue-200 transition-colors nav-link">Referinte</a>
|
|
<a href="angajari.html" class="text-white hover:text-blue-200 transition-colors nav-link font-semibold">Angajari</a>
|
|
<a href="contact.html" class="text-white hover:text-blue-200 transition-colors nav-link">Contact</a>
|
|
</div>
|
|
|
|
<!-- Theme Toggle & Mobile Menu -->
|
|
<div class="flex items-center space-x-4">
|
|
<button id="theme-toggle" class="text-white p-2 rounded-lg hover:bg-white hover:bg-opacity-20 transition-all duration-300">
|
|
<i data-lucide="sun" class="w-5 h-5"></i>
|
|
</button>
|
|
<button class="lg:hidden text-white p-2">
|
|
<i data-lucide="menu" class="w-6 h-6"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- Main Content Container -->
|
|
<main class="container mx-auto px-4 py-8 max-w-7xl">
|
|
|
|
<!-- Hero Section for Careers -->
|
|
<section class="professional-hero text-center">
|
|
<div class="max-w-4xl mx-auto relative z-10">
|
|
<div class="professional-icon-wrapper mx-auto mb-6">
|
|
<i data-lucide="users" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h1 class="text-4xl md:text-5xl font-bold mb-6 professional-text-primary">
|
|
Oportunitati de Cariera
|
|
</h1>
|
|
<p class="text-xl professional-text-secondary mb-8 leading-relaxed">
|
|
Suntem mereu in cautare de oameni talentati si pasionati pentru a se alatura echipei noastre.
|
|
Pentru mai multe informatii despre posturile libere, va rugam sa ne contactati.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Career Information Section -->
|
|
<section class="mb-16">
|
|
<div class="max-w-4xl mx-auto">
|
|
<!-- Contact Information Card -->
|
|
<div class="professional-card p-8">
|
|
<div class="flex items-center justify-center mb-6">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="mail" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
</div>
|
|
<h2 class="text-2xl font-semibold mb-8 professional-text-primary text-center">Date de Contact</h2>
|
|
|
|
<div class="grid md:grid-cols-2 gap-8">
|
|
<!-- Address Section -->
|
|
<div class="space-y-6">
|
|
<div>
|
|
<div class="flex items-center space-x-3 mb-3">
|
|
<i data-lucide="map-pin" class="w-5 h-5 text-blue-600"></i>
|
|
<h3 class="text-lg font-semibold professional-text-primary">Adresa</h3>
|
|
</div>
|
|
<p class="professional-text-secondary ml-8">
|
|
900673 Constanta, Bd. Mamaia Nr. 17
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="flex items-center space-x-3 mb-3">
|
|
<i data-lucide="mail" class="w-5 h-5 text-blue-600"></i>
|
|
<h3 class="text-lg font-semibold professional-text-primary">E-mail</h3>
|
|
</div>
|
|
<p class="professional-text-secondary ml-8">
|
|
<a href="mailto:office@romfast.ro" class="text-blue-600 hover:text-blue-800 transition-colors">office@romfast.ro</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Phone Section -->
|
|
<div>
|
|
<div class="flex items-center space-x-3 mb-3">
|
|
<i data-lucide="phone" class="w-5 h-5 text-blue-600"></i>
|
|
<h3 class="text-lg font-semibold professional-text-primary">Telefon/Fax</h3>
|
|
</div>
|
|
<div class="ml-8 space-y-2">
|
|
<p class="professional-text-secondary">0241 / 541000 (Romtelecom)</p>
|
|
<p class="professional-text-secondary">0372 / 780218 (Vodafone)</p>
|
|
<p class="professional-text-secondary">0341 / 101578 (UPC)</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Call to Action -->
|
|
<div class="text-center mt-8">
|
|
<a href="mailto:office@romfast.ro" class="professional-btn-primary px-8 py-4 text-lg inline-block">
|
|
<span>Contacteaza-ne pentru Oportunități de Cariera</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Career Opportunities Section -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">De ce să lucrezi cu noi?</h2>
|
|
|
|
<div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
|
|
<!-- Innovation Card -->
|
|
<div class="professional-card service-technology p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="lightbulb" class="w-8 h-8 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Inovație Continuă</h3>
|
|
<p class="professional-text-secondary leading-relaxed">
|
|
Lucrăm cu tehnologii moderne pentru dezvoltarea sistemelor ERP ROA și oferim oportunități de creștere profesională.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Team Card -->
|
|
<div class="professional-card service-reliability p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="heart" class="w-8 h-8 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Echipă Unită</h3>
|
|
<p class="professional-text-secondary leading-relaxed">
|
|
Facem parte dintr-o echipă solidară, cu experiență de peste 25 de ani în domeniul sistemelor informatice.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Growth Card -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="trending-up" class="w-8 h-8 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Dezvoltare Profesională</h3>
|
|
<p class="professional-text-secondary leading-relaxed">
|
|
Oferim programe de formare și dezvoltare pentru a-ți îmbunătăți competențele în domeniul IT și ERP.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<!-- Professional Footer -->
|
|
<footer class="bg-gradient-to-r from-slate-900 via-gray-800 to-slate-900 text-white py-12" style="border-radius: 1rem 1rem 0 0;">
|
|
<div class="container mx-auto px-4 text-center">
|
|
<div class="mb-6">
|
|
<img src="../images/romfast_logo.png" alt="Romfast Logo" class="h-12 mx-auto mb-4">
|
|
<p class="text-gray-400 italic">Aduce informația în mâinile tale</p>
|
|
</div>
|
|
<div class="border-t border-gray-700 pt-6" style="border-radius: 0.5rem;">
|
|
<p class="text-sm text-gray-400 mb-2">
|
|
Copyright © 2025 Romfast SRL. Toate drepturile rezervate.
|
|
</p>
|
|
<a href="../politica-confidentialitate.html" class="text-blue-400 hover:text-blue-300 transition-colors text-sm">
|
|
Politica de confidentialitate
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Professional Theme JavaScript -->
|
|
<script src="../professional-theme.js"></script>
|
|
</body>
|
|
</html>
|