This commit is contained in:
Iliyan Angelov
2025-11-24 08:18:18 +02:00
parent 366f28677a
commit 136f75a859
133 changed files with 14977 additions and 3350 deletions

View File

@@ -1,6 +1,6 @@
"use client";
import { usePathname } from "next/navigation";
import { useState } from "react";
import { useState, useEffect, useRef } from "react";
import Image from "next/legacy/image";
import thumb from "@/public/images/contact-thumb.png";
import { contactApiService, ContactFormData } from "@/lib/api/contactService";
@@ -31,6 +31,22 @@ const ContactSection = () => {
type: 'success' | 'error' | null;
message: string;
}>({ type: null, message: '' });
// Refs for scrolling to status messages
const statusRef = useRef<HTMLDivElement>(null);
const formRef = useRef<HTMLFormElement>(null);
// Scroll to status message when it appears
useEffect(() => {
if (submitStatus.type && statusRef.current) {
setTimeout(() => {
statusRef.current?.scrollIntoView({
behavior: 'smooth',
block: 'center'
});
}, 100);
}
}, [submitStatus]);
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement>) => {
const { name, value, type } = e.target;
@@ -105,13 +121,13 @@ const ContactSection = () => {
return (
<section
className={
"tp-contact pb-120 fade-wrapper" +
(isServiceSingle ? " pt-120" : " fix-top")
"tp-contact pb-60 fade-wrapper luxury-contact" +
(isServiceSingle ? " pt-60" : " fix-top")
}
>
<div className="container">
{/* Contact Information Cards */}
<div className="row mb-40">
<div className="row mb-30">
<div className="col-12 col-md-4">
<div className="contact-info-card">
<div className="contact-info-icon">
@@ -119,8 +135,8 @@ const ContactSection = () => {
</div>
<h4>Phone Support</h4>
<p>Main Contact & Emergency</p>
<a href="tel:+359897338147">+359 897 338 147</a>
<a href="tel:+359896138030">Emergency: +359 896 13 80 30</a>
<a href="tel:+359896138030">+359 896 13 80 30</a>
<a href="tel:+359897338147">Emergency: +359 897 338 147</a>
<span className="contact-hours">Available 24/7</span>
</div>
</div>
@@ -153,20 +169,19 @@ const ContactSection = () => {
</div>
</div>
<div className="row vertical-column-gap-md justify-content-between mt-40">
<div className="row vertical-column-gap-md justify-content-between mt-30">
<div className="col-12 col-lg-7">
<div className="tp-contact__content">
<div className="contact-form mt-40">
<form onSubmit={handleSubmit} className="enterprise-form">
<div className="form-section">
<h4 className="form-section-title">
<i className="fa-solid fa-user"></i>
Personal Information
</h4>
<div className="form-header-compact mb-20">
<h2 className="luxury-title">Request Enterprise Consultation</h2>
<p className="luxury-subtitle">Fill out the form below to get started</p>
</div>
<div className="contact-form">
<form ref={formRef} onSubmit={handleSubmit} className="enterprise-form luxury-form">
<div className="form-section compact-section">
<div className="row">
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="firstName">First Name *</label>
<input
type="text"
@@ -180,7 +195,7 @@ const ContactSection = () => {
</div>
</div>
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="lastName">Last Name *</label>
<input
type="text"
@@ -196,7 +211,7 @@ const ContactSection = () => {
</div>
<div className="row">
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="email">Business Email *</label>
<input
type="email"
@@ -210,7 +225,7 @@ const ContactSection = () => {
</div>
</div>
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="phone">Phone Number</label>
<input
type="tel"
@@ -223,16 +238,9 @@ const ContactSection = () => {
</div>
</div>
</div>
</div>
<div className="form-section">
<h4 className="form-section-title">
<i className="fa-solid fa-building"></i>
Company Information
</h4>
<div className="row">
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="company">Company Name *</label>
<input
type="text"
@@ -246,7 +254,7 @@ const ContactSection = () => {
</div>
</div>
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="jobTitle">Job Title *</label>
<input
type="text"
@@ -262,7 +270,7 @@ const ContactSection = () => {
</div>
<div className="row">
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="industry">Industry</label>
<select
name="industry"
@@ -283,7 +291,7 @@ const ContactSection = () => {
</div>
</div>
<div className="col-12 col-md-6">
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="companySize">Company Size</label>
<select
name="companySize"
@@ -301,16 +309,9 @@ const ContactSection = () => {
</div>
</div>
</div>
</div>
<div className="form-section">
<h4 className="form-section-title">
<i className="fa-solid fa-project-diagram"></i>
Project Details
</h4>
<div className="row">
<div className="col-12 col-md-6">
<div className="input-single">
<div className="col-12 col-md-4">
<div className="input-single compact-input">
<label htmlFor="projectType">Project Type</label>
<select
name="projectType"
@@ -318,7 +319,7 @@ const ContactSection = () => {
value={formData.projectType}
onChange={handleInputChange}
>
<option value="">Select Project Type</option>
<option value="">Select Type</option>
<option value="software-development">Software Development</option>
<option value="cloud-migration">Cloud Migration</option>
<option value="digital-transformation">Digital Transformation</option>
@@ -329,9 +330,9 @@ const ContactSection = () => {
</select>
</div>
</div>
<div className="col-12 col-md-6">
<div className="input-single">
<label htmlFor="timeline">Project Timeline</label>
<div className="col-12 col-md-4">
<div className="input-single compact-input">
<label htmlFor="timeline">Timeline</label>
<select
name="timeline"
id="timeline"
@@ -347,18 +348,16 @@ const ContactSection = () => {
</select>
</div>
</div>
</div>
<div className="row">
<div className="col-12">
<div className="input-single">
<label htmlFor="budget">Project Budget Range</label>
<div className="col-12 col-md-4">
<div className="input-single compact-input">
<label htmlFor="budget">Budget Range</label>
<select
name="budget"
id="budget"
value={formData.budget}
onChange={handleInputChange}
>
<option value="">Select Budget Range</option>
<option value="">Select Budget</option>
<option value="under-50k">Under 50,000</option>
<option value="50k-100k">50,000 - 100,000</option>
<option value="100k-250k">100,000 - 250,000</option>
@@ -370,7 +369,7 @@ const ContactSection = () => {
</div>
</div>
</div>
<div className="input-single">
<div className="input-single compact-input">
<label htmlFor="message">Project Description *</label>
<textarea
name="message"
@@ -378,18 +377,11 @@ const ContactSection = () => {
value={formData.message}
onChange={handleInputChange}
placeholder="Please describe your project requirements, current challenges, and expected outcomes..."
rows={5}
rows={4}
required
/>
</div>
</div>
<div className="form-section">
<h4 className="form-section-title">
<i className="fa-solid fa-shield-halved"></i>
Privacy & Communication
</h4>
<div className="checkbox-group">
<div className="checkbox-group compact-checkbox">
<div className="checkbox-single">
<input
type="checkbox"
@@ -399,7 +391,7 @@ const ContactSection = () => {
onChange={handleInputChange}
/>
<label htmlFor="newsletter">
Subscribe to our newsletter for industry insights and product updates
Subscribe to newsletter
</label>
</div>
<div className="checkbox-single">
@@ -412,7 +404,7 @@ const ContactSection = () => {
required
/>
<label htmlFor="privacy">
I agree to the <a href="/policy?type=privacy">Privacy Policy</a> and consent to being contacted by our team *
I agree to the <a href="/policy?type=privacy">Privacy Policy</a> *
</label>
</div>
</div>
@@ -420,7 +412,10 @@ const ContactSection = () => {
{/* Status Message */}
{submitStatus.type && (
<div className={`form-status mt-30 ${submitStatus.type === 'success' ? 'success' : 'error'}`}>
<div
ref={statusRef}
className={`form-status mt-20 ${submitStatus.type === 'success' ? 'success' : 'error'}`}
>
<div className="status-content">
<i className={`fa-solid ${submitStatus.type === 'success' ? 'fa-check-circle' : 'fa-exclamation-circle'}`}></i>
<span>{submitStatus.message}</span>
@@ -436,7 +431,7 @@ const ContactSection = () => {
</div>
)}
<div className="form-actions mt-40">
<div className="form-actions mt-30">
<button
type="submit"
className="btn btn-primary enterprise-btn"
@@ -465,106 +460,81 @@ const ContactSection = () => {
</div>
<div className="col-12 col-lg-5">
<div className="tp-contact__sidebar">
<div className="contact-sidebar-card">
<div className="tp-contact__sidebar luxury-sidebar">
<div className="contact-sidebar-card compact-sidebar-card">
<div className="sidebar-header">
<h3>Why Choose Our Software Solutions?</h3>
<h3>Enterprise Solutions</h3>
<div className="enterprise-badge">
<i className="fa-solid fa-award"></i>
<span>Enterprise Grade</span>
<span>Premium</span>
</div>
</div>
<div className="sidebar-features">
<div className="feature-item">
<div className="sidebar-features compact-features">
<div className="feature-item compact-feature">
<div className="feature-icon">
<i className="fa-solid fa-shield-halved"></i>
</div>
<div className="feature-content">
<h4>Incident Management</h4>
<p>Advanced incident management software with real-time monitoring and automated response capabilities.</p>
<div className="feature-tags">
<span className="tag">Real-time</span>
<span className="tag">Automated</span>
</div>
<p>Real-time monitoring and automated response capabilities.</p>
</div>
</div>
<div className="feature-item">
<div className="feature-item compact-feature">
<div className="feature-icon">
<i className="fa-solid fa-users"></i>
</div>
<div className="feature-content">
<h4>Custom Development</h4>
<p>Tailored software solutions built to your exact specifications with dedicated development teams.</p>
<div className="feature-tags">
<span className="tag">Dedicated Teams</span>
<span className="tag">Custom</span>
</div>
<p>Tailored solutions with dedicated development teams.</p>
</div>
</div>
<div className="feature-item">
<div className="feature-item compact-feature">
<div className="feature-icon">
<i className="fa-solid fa-chart-line"></i>
</div>
<div className="feature-content">
<h4>System Integrations & APIs</h4>
<p>Seamless integration with your existing systems and third-party applications through robust APIs for unified workflows.</p>
<div className="feature-tags">
<span className="tag">API-First</span>
<span className="tag">Seamless</span>
</div>
</div>
</div>
<div className="feature-item">
<div className="feature-icon">
<i className="fa-solid fa-cogs"></i>
</div>
<div className="feature-content">
<h4>Data Replication</h4>
<p>Reliable data replication and synchronization solutions to ensure data consistency across systems.</p>
<div className="feature-tags">
<span className="tag">Reliable</span>
<span className="tag">Sync</span>
</div>
<h4>System Integrations</h4>
<p>Seamless API integration for unified workflows.</p>
</div>
</div>
</div>
</div>
<div className="contact-sidebar-card">
<h3>Next Steps</h3>
<div className="next-steps">
<div className="step-item">
<div className="contact-sidebar-card compact-sidebar-card">
<h3>Quick Process</h3>
<div className="next-steps compact-steps">
<div className="step-item compact-step">
<div className="step-number">1</div>
<div className="step-content">
<h4>Initial Consultation</h4>
<p>We&apos;ll review your requirements and provide initial recommendations within 24 hours.</p>
<h4>Consultation</h4>
<p>24-hour response time</p>
</div>
</div>
<div className="step-item">
<div className="step-item compact-step">
<div className="step-number">2</div>
<div className="step-content">
<h4>Custom Demo</h4>
<p>Schedule a personalized demonstration tailored to your specific use case.</p>
<p>Personalized demonstration</p>
</div>
</div>
<div className="step-item">
<div className="step-item compact-step">
<div className="step-number">3</div>
<div className="step-content">
<h4>Proposal & Pricing</h4>
<p>Receive a detailed proposal with custom pricing and implementation timeline.</p>
<h4>Proposal</h4>
<p>Detailed pricing & timeline</p>
</div>
</div>
</div>
</div>
<div className="contact-sidebar-card">
<h3>Find Us</h3>
<div className="company-map">
<div className="contact-sidebar-card compact-sidebar-card">
<h3>Location</h3>
<div className="company-map compact-map">
<div className="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2933.123456789!2d27.4758968970689!3d42.496781103070504!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x40a6b8c9d1234567%3A0x1234567890abcdef!2sBurgas%2C%20Bulgaria!5e0!3m2!1sen!2sbg!4v1234567890123!5m2!1sen!2sbg"
width="100%"
height="200"
height="150"
style={{ border: 0, borderRadius: '8px' }}
allowFullScreen
loading="lazy"
@@ -572,22 +542,20 @@ const ContactSection = () => {
title="Company Location"
/>
</div>
<div className="map-info">
<div className="map-info compact-map-info">
<div className="location-details">
<div className="location-icon">
<i className="fa-solid fa-map-marker-alt"></i>
</div>
<div className="location-text">
<h4>GNX Soft Ltd.</h4>
<p>Tsar Simeon I, 56<br />Burgas, Burgas 8000, Bulgaria</p>
<p>Tsar Simeon I, 56, Burgas 8000</p>
</div>
</div>
<div className="location-actions">
<a href="https://maps.google.com/?q=Tsar+Simeon+I+56+Burgas+Bulgaria" target="_blank" rel="noopener noreferrer" className="map-link">
<i className="fa-solid fa-directions"></i>
Get Directions
</a>
</div>
<a href="https://maps.google.com/?q=Tsar+Simeon+I+56+Burgas+Bulgaria" target="_blank" rel="noopener noreferrer" className="map-link">
<i className="fa-solid fa-directions"></i>
Directions
</a>
</div>
</div>
</div>