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>
267 lines
15 KiB
HTML
267 lines
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Romfast - Suport Tehnic și Descărcări</title>
|
|
<meta name="description" content="Pagina de suport tehnic Romfast cu descărcări pentru ROA și Contafin: kit client, runtime-uri, Romfast Suport și acces la versiunile online.">
|
|
<meta name="keywords" content="suport tehnic romfast, descarcare roa, kit client, vfp runtime, oracle instantclient, microsoft visual c++, romfast suport">
|
|
|
|
<!-- 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">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 -->
|
|
<section class="professional-hero text-center">
|
|
<div class="max-w-4xl mx-auto relative z-10">
|
|
<h1 class="text-4xl md:text-5xl font-bold mb-6 professional-text-primary">
|
|
Suport Tehnic & Descărcări
|
|
</h1>
|
|
<p class="text-xl professional-text-secondary mb-8 leading-relaxed">
|
|
Descarcă componentele necesare pentru ROA și Contafin, accesează instrumentele de suport tehnic
|
|
și conectează-te online la aplicațiile Romfast.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Downloads Section -->
|
|
<section class="mb-16">
|
|
<h2 class="text-3xl font-bold text-center mb-12 professional-text-primary">Descărcări Necesare</h2>
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
|
|
<!-- Kit Client -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="package" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Kit Client</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">
|
|
Componente client pentru aplicațiile ROA și Contafin
|
|
</p>
|
|
<div class="space-y-3">
|
|
<a href="http://www.romfast.ro/romfastsuport/files/kit_client41.exe"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block text-sm">
|
|
<span>Kit Client 4.1</span>
|
|
</a>
|
|
<a href="http://www.romfast.ro/romfastsuport/files/ContafinClient5.exe"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block text-sm">
|
|
<span>Kit Client 5</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Runtime Components -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="cpu" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Runtime Components</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">
|
|
Componente runtime necesare pentru funcționarea aplicațiilor
|
|
</p>
|
|
<div class="space-y-3">
|
|
<a href="http://www.romfast.ro/romfastsuport/files/vfp7sp1rt.exe"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block text-sm">
|
|
<span>VFP7 SP1 Runtime</span>
|
|
</a>
|
|
<a href="http://www.romfast.ro/romfastsuport/files/vfp9rtsp2.exe"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block text-sm">
|
|
<span>VFP9 SP2 Runtime</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Database Components -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="database" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Database Components</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">
|
|
Componente pentru conexiunea la baza de date Oracle
|
|
</p>
|
|
<div class="space-y-3">
|
|
<a href="http://www.romfast.ro/romfastsuport/files/instantclient_11_2.zip"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block text-sm">
|
|
<span>Oracle InstantClient x32 <br>(53 MB)</span>
|
|
</a>
|
|
<div class="text-xs professional-text-secondary mt-2 bg-blue-50 p-2 rounded">
|
|
Pe Windows X64 folosiți %WINDIR%\SysWOW64\odbcad32.exe pentru managerul ODBC 32bits
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Microsoft Components -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="settings" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Microsoft Components</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">
|
|
Pachete Microsoft necesare pentru funcționarea aplicațiilor
|
|
</p>
|
|
<a href="http://www.romfast.ro/romfastsuport/files/vcredist_x86.exe"
|
|
class="professional-btn-secondary px-6 py-3 w-full inline-block">
|
|
<span>Visual C++ 2005 SP1 Redistributable (x86)</span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Remote Support -->
|
|
<div class="professional-card p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="headphones" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Suport Tehnic</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">
|
|
Aplicație pentru suport tehnic la distanță
|
|
</p>
|
|
<a href="http://www.romfast.ro/romfastsuport/files/romfast_suport.exe"
|
|
class="professional-btn-primary px-6 py-3 w-full inline-block">
|
|
<span>Descarcă Romfast Suport</span>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Online Access -->
|
|
<div class="professional-card professional-card-featured p-6 text-center">
|
|
<div class="professional-icon-wrapper">
|
|
<i data-lucide="monitor" class="w-10 h-10 text-white"></i>
|
|
</div>
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Acces Online</h3>
|
|
<p class="professional-text-secondary mb-6 leading-relaxed">
|
|
Accesează direct aplicațiile ROA și Contafin online
|
|
</p>
|
|
<div class="space-y-3">
|
|
<a href="../servicii/acceseazaroaonline.html"
|
|
class="professional-btn-urgent px-6 py-2 w-full inline-block text-sm">
|
|
<span>Accesează ROA Online</span>
|
|
</a>
|
|
<a href="../servicii/descarcacontafin.html"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block text-sm">
|
|
<span>Descarcă Contafin</span>
|
|
</a>
|
|
<div class="text-xs professional-text-secondary mt-2 bg-yellow-50 p-2 rounded">
|
|
Pentru ROA DEMO folosiți <strong>Internet Explorer</strong>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Remote Support Tools Section -->
|
|
<section class="professional-support text-center">
|
|
<h2 class="text-2xl font-bold mb-8 professional-text-primary">Instrumente de Asistență la Distanță</h2>
|
|
<div class="grid sm:grid-cols-3 gap-6">
|
|
<div class="professional-support-card">
|
|
<i data-lucide="download" class="w-8 h-8 mx-auto mb-4" style="color: #5288c4;"></i>
|
|
<h3 class="font-semibold mb-3 professional-text-primary">Romfast Suport</h3>
|
|
<p class="text-sm professional-text-secondary mb-4">Aplicația noastră pentru suport tehnic</p>
|
|
<a href="http://www.romfast.ro/romfastsuport/files/romfast_suport.exe"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block">
|
|
<span>Descarcă</span>
|
|
</a>
|
|
</div>
|
|
<div class="professional-support-card">
|
|
<i data-lucide="monitor" class="w-8 h-8 mx-auto mb-4" style="color: #4a7ba7;"></i>
|
|
<h3 class="font-semibold mb-3 professional-text-primary">Ammyy Admin</h3>
|
|
<p class="text-sm professional-text-secondary mb-4">Soluție alternativă pentru control la distanță</p>
|
|
<a href="http://www.ammyy.com/en/" target="_blank"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block">
|
|
<span>Accesează</span>
|
|
</a>
|
|
</div>
|
|
<div class="professional-support-card">
|
|
<i data-lucide="video" class="w-8 h-8 mx-auto mb-4" style="color: #5288c4;"></i>
|
|
<h3 class="font-semibold mb-3 professional-text-primary">TeamViewer</h3>
|
|
<p class="text-sm professional-text-secondary mb-4">Platformă profesională pentru asistență</p>
|
|
<a href="https://www.teamviewer.com/en/" target="_blank"
|
|
class="professional-btn-secondary px-6 py-2 w-full inline-block">
|
|
<span>Accesează</span>
|
|
</a>
|
|
</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> |