Global Logistics Solutions is a premier provider of comprehensive transportation and supply chain services, specializing in freight forwarding, road transportation, and warehousing. With over 20 years of industry experience, the company leverages its extensive global network and modern, diverse fleet to ensure the safe, timely, and cost-effective delivery of cargo worldwide. Services include international air and sea freight, full truckload (FTL) and less than truckload (LTL) road transport, and secure warehousing with inventory management. They serve a wide range of industries, from automotive and pharmaceuticals to retail and technology, offering tailored logistics solutions. Committed to reliability and customer satisfaction, Global Logistics Solutions provides real-time shipment tracking and a dedicated team of professionals to manage complex supply chain needs, making them a trusted partner for businesses seeking efficient and dependable global logistics.
Basic Structure Overview
This template has several main sections:
How to Edit Different Parts
1. Text Content
Replace any text by finding the corresponding HTML elements:
html
<!-- Example: Changing company name -->
<a href="#home" class="text-2xl font-bold tracking-wide">Your <span class="text-orange-400">Company</span></a>
<!-- Example: Changing hero text -->
<h1 class="text-4xl md:text-6xl font-extrabold">Your Custom Headline Here</h1>
<p class="text-lg md:text-xl mb-8">Your custom subheadline here.</p>
2. Colors and Styling
The template uses Tailwind CSS classes. Key color schemes:
3. Images
Replace placeholder images by updating the src attributes:
html
<!-- Before -->
<img src="images/hero-bg.jpg" alt="Hero background">
<!-- After -->
<img src="images/your-hero-image.jpg" alt="Your description">
4. Contact Information
Update contact details throughout the site:
html
<!-- In contact section -->
<p class="text-gray-700">your-email@company.com</p>
<p class="text-gray-700">+1 (555) 123-4567</p>
<!-- In footer -->
<li><i class="fas fa-envelope mr-2 text-orange-400"></i> your-email@company.com</li>
5. Services
Customize services by editing the services section:
html
<div class="text-5xl text-orange-500 mb-6"><i class="fas fa-truck"></i></div>
<h3 class="text-2xl font-semibold text-blue-800 mb-4">Your Service Name</h3>
<p class="text-gray-600 leading-relaxed">Your service description here.</p>
6. Forms
Update form fields as needed:
html
<!-- Add/remove form fields -->
<div>
<label for="custom-field" class="block text-sm font-semibold mb-2">Custom Field</label>
<input type="text" id="custom-field" name="custom" class="w-full p-3 border border-gray-300 rounded-lg">
</div>
Step-by-Step Editing Process
1. Start with Basic Information
2. Update Hero Section
3. Customize Services
4. Modify Content Sections
5. Update Visual Elements
6. Configure Forms
Important Files to Edit
Tools You'll Need
Quick Customization Tips
Common Edits
To change the company logo:
html
<a href="#home" class="text-2xl font-bold tracking-wide">Your <span class="text-orange-400">Logo</span></a>
To update social media links:
html
<a href="your-facebook-url" class="hover:text-orange-400"><i class="fab fa-facebook-f"></i></a>
To modify the tracking system:
Update the JavaScript functionality in the script.js file for real tracking integration.