- Remove all Lucide icons from card elements across website - Clean up empty professional-icon-wrapper divs (108 total removed) - Preserve navigation and UI control icons in headers/menus - Maintain card structure and styling without visual icons - Files affected: index.html, all menu/ and roa/ pages (22 files) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
261 lines
16 KiB
HTML
261 lines
16 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Despre Noi - Romfast Applications</title>
|
|
<meta name="description" content="Romfast produce si comercializeaza produse software inovative de inalta calitate, specializate in domeniul economic, pentru a oferi informatia necesara oricand, oriunde si in cel mai scurt timp posibil.">
|
|
<meta name="keywords" content="roa, romfast, software economic, sistem informatic erp, solutii software, oracle partner, microsoft certified partner, despre noi, istorie 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 font-semibold">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 id="mobile-menu-toggle" class="lg:hidden text-white p-2 rounded-lg hover:bg-white hover:bg-opacity-20 transition-all duration-300">
|
|
<i data-lucide="menu" class="w-6 h-6" id="menu-icon"></i>
|
|
<i data-lucide="x" class="w-6 h-6 hidden" id="close-icon"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<!-- Mobile Menu -->
|
|
<div id="mobile-menu" class="lg:hidden hidden bg-white border-t border-gray-200 shadow-lg">
|
|
<div class="px-4 py-4 space-y-3">
|
|
<a href="../index.html" class="block text-gray-700 hover:text-blue-600 transition-colors font-medium py-2">Prima pagina</a>
|
|
<a href="desprenoi.html" class="block text-gray-700 hover:text-blue-600 transition-colors py-2">Despre noi</a>
|
|
<a href="../roa/aplicatii-erp.html" class="block text-gray-700 hover:text-blue-600 transition-colors py-2">ROA</a>
|
|
<div class="border-l-2 border-gray-300 pl-4 space-y-2">
|
|
<p class="text-gray-600 font-medium text-sm">Servicii</p>
|
|
<a href="analiza.html" class="block text-gray-600 hover:text-blue-600 transition-colors py-1 text-sm">Analiza</a>
|
|
<a href="implementare.html" class="block text-gray-600 hover:text-blue-600 transition-colors py-1 text-sm">Implementare</a>
|
|
<a href="roa-suport-tehnic.html" class="block text-gray-600 hover:text-blue-600 transition-colors py-1 text-sm">Suport tehnic ROA</a>
|
|
<a href="alteservicii.html" class="block text-gray-600 hover:text-blue-600 transition-colors py-1 text-sm">Alte servicii</a>
|
|
</div>
|
|
<a href="referinte.html" class="block text-gray-700 hover:text-blue-600 transition-colors py-2">Referinte</a>
|
|
<a href="angajari.html" class="block text-gray-700 hover:text-blue-600 transition-colors py-2">Angajari</a>
|
|
<a href="contact.html" class="block text-gray-700 hover:text-blue-600 transition-colors py-2">Contact</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content Container -->
|
|
<main class="container mx-auto px-4 py-8 max-w-7xl">
|
|
|
|
<!-- Professional Hero Section -->
|
|
<section class="professional-hero text-center mb-16">
|
|
<div class="max-w-4xl mx-auto relative z-10">
|
|
<h1 class="text-4xl md:text-5xl font-bold mb-6 professional-text-primary">
|
|
Despre Romfast
|
|
</h1>
|
|
<p class="text-xl professional-text-secondary mb-8 leading-relaxed">
|
|
Romfast produce si comercializeaza produse software inovative de inalta calitate.
|
|
Inca din 1991 ne-am specializat in producerea de software pentru domeniul economic.
|
|
</p>
|
|
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
|
<a href="../roa/aplicatii-erp.html" class="professional-btn-primary px-8 py-4 text-lg">
|
|
<span>Descopera ROA</span>
|
|
</a>
|
|
<a href="contact.html" class="professional-btn-secondary px-8 py-4 text-lg">
|
|
<span>Contacteaza-ne</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- About Us Content Section -->
|
|
<section class="grid lg:grid-cols-3 gap-8 mb-16">
|
|
<!-- Main Content - Left Column (2/3) -->
|
|
<div class="lg:col-span-2">
|
|
<div class="professional-card p-8">
|
|
<div class="flex items-center justify-center mb-6">
|
|
</div>
|
|
<h2 class="text-2xl font-semibold mb-6 professional-text-primary text-center">Totul incepe cu o idee buna</h2>
|
|
<div class="professional-text-secondary space-y-4 text-lg leading-relaxed">
|
|
<p>
|
|
Programele noastre sunt capabile sa ofere informatia necesara oricand, oriunde si in cel mai scurt timp posibil.
|
|
</p>
|
|
<p>
|
|
In cazul nostru, ideea de baza a fost crearea unui sistem informatic ergonomic si cuprinzator, astfel incat:
|
|
</p>
|
|
<ul class="space-y-3 ml-6">
|
|
<li class="flex items-start space-x-3">
|
|
<span class="text-blue-500 text-lg">✓</span>
|
|
<span>sa poata fi folosit de majoritatea companiilor,</span>
|
|
</li>
|
|
<li class="flex items-start space-x-3">
|
|
<span class="text-blue-500 text-lg">✓</span>
|
|
<span>sa aiba in centru o organizare contabila moderna,</span>
|
|
</li>
|
|
<li class="flex items-start space-x-3">
|
|
<span class="text-blue-500 text-lg">✓</span>
|
|
<span>sa faciliteze circulatia informatiei prin intreaga firma,</span>
|
|
</li>
|
|
<li class="flex items-start space-x-3">
|
|
<span class="text-blue-500 text-lg">✓</span>
|
|
<span>sa fie un valoros instrument de management.</span>
|
|
</li>
|
|
</ul>
|
|
<p class="font-semibold text-xl professional-text-primary">
|
|
Astfel a luat nastere sistemul <strong>ROA (Romfast Applications)</strong>, ce are o structura special dezvoltata pentru firmele medii si mari.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Solutions Section -->
|
|
<div class="professional-card p-8 mt-8">
|
|
<div class="flex items-center justify-center mb-6">
|
|
</div>
|
|
<h2 class="text-2xl font-semibold mb-6 professional-text-primary text-center">Solutii pentru toate tipurile de companii</h2>
|
|
<div class="professional-text-secondary space-y-4 text-lg leading-relaxed">
|
|
<p>
|
|
Solutiile noastre informatice sunt folosite de firme mari si mici, de firme cu diverse domenii de activitate:
|
|
comert en-gros sau en-detail, productie, constructii, prestari servicii.
|
|
</p>
|
|
<p class="font-semibold text-center text-xl professional-text-primary">
|
|
Cheia este in <span class="text-blue-600">robustete</span> si <span class="text-blue-600">flexibilitate</span>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Experience Section -->
|
|
<div class="professional-card p-8 mt-8">
|
|
<div class="flex items-center justify-center mb-6">
|
|
</div>
|
|
<h2 class="text-2xl font-semibold mb-6 professional-text-primary text-center">Creatie si inovatie prin experienta</h2>
|
|
<div class="professional-text-secondary space-y-4 text-lg leading-relaxed">
|
|
<p>
|
|
In aplicatiile <strong>Romfast</strong> sta toata experienta noastra, acumulata de mai bine de 30 ani.
|
|
De-a lungul timpului, in urma colaborarii cu numeroase firme din diferite domenii de activitate,
|
|
proiectele software produse au fost permanent imbunatatite si dezvoltate, constituind azi un suport
|
|
informatic stabil si eficient in managementul clientilor nostri.
|
|
</p>
|
|
<p>
|
|
Urmand preocuparea pentru satisfactia clientilor, <strong>Romfast</strong> a dezvoltat o serie de
|
|
parteneriate prin care gradul de specializare al echipei si calitatea serviciilor au crescut.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Sidebar - Right Column (1/3) -->
|
|
<div class="lg:col-span-1">
|
|
<!-- Partnership Cards -->
|
|
<div class="professional-card professional-card-featured p-6 mb-8">
|
|
<div class="text-center">
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Oracle Partner</h3>
|
|
<div class="mb-4">
|
|
<img src="../images/oracle-partner.png" alt="Oracle Partner" class="mx-auto max-h-16 object-contain">
|
|
</div>
|
|
<p class="professional-text-secondary leading-relaxed">
|
|
Romfast este <strong>Oracle Partner</strong> din anul 2004 si are expertiza in crearea de sisteme
|
|
informatice de mari dimensiuni pe baze de date Oracle.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="professional-card p-6 mb-8">
|
|
<div class="text-center">
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">Microsoft Partner</h3>
|
|
<div class="mb-4">
|
|
<img src="../images/microsoft-partner.png" alt="Microsoft Partner" class="mx-auto max-h-16 object-contain">
|
|
</div>
|
|
<p class="professional-text-secondary leading-relaxed">
|
|
Din 2005 Romfast este <strong>Microsoft Certified Partner</strong>, fapt ce atesta experienta in
|
|
dezvoltarea de produse software de calitate utilizand cele mai noi tehnologii Microsoft.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Company Stats -->
|
|
<div class="professional-card service-technology p-6">
|
|
<div class="text-center">
|
|
<h3 class="text-xl font-semibold mb-4 professional-text-primary">30+ ani de experienta</h3>
|
|
<div class="grid grid-cols-2 gap-4 text-center">
|
|
<div class="p-3 bg-blue-50 rounded-lg">
|
|
<div class="text-2xl font-bold text-blue-600">1991</div>
|
|
<div class="text-sm professional-text-secondary">Anul infiintarii</div>
|
|
</div>
|
|
<div class="p-3 bg-blue-50 rounded-lg">
|
|
<div class="text-2xl font-bold text-blue-600">30+</div>
|
|
<div class="text-sm professional-text-secondary">Clienti activi</div>
|
|
</div>
|
|
</div>
|
|
<a href="../roa/aplicatii-erp.html" class="professional-btn-secondary px-6 py-3 w-full inline-block mt-4">
|
|
<span>Vezi solutiile ROA</span>
|
|
</a>
|
|
</div>
|
|
</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> |