This guide will help you maintain and customize the Project Nautica landing page, even if you're new to web development. Follow these detailed instructions to make common updates while preserving the page's professional appearance.
The header contains the main navigation and brand name. To update:
- Company Name:
<a href="/" class="text-2xl font-bold">Project Nautica</a>
Simply replace "Project Nautica" with your company name.
- Announcement Bar:
<div class="bg-black text-white text-sm py-2 text-center">
<p>Fast Worldwide Shipping (5 days delivery) 🚀</p>
</div>
Modify the text between <p>
tags to update your announcement.
Located at the top of the page with the large background image:
- Main Heading:
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
Build Your Store in Minutes, Not Days
</h1>
Replace the text while keeping the HTML tags intact.
- Subheading:
<p class="text-xl md:text-2xl mb-8">Bright. Precise. Professional.</p>
Common classes used throughout:
text-[size]
: Controls text size (xl, 2xl, 3xl, etc.)font-[weight]
: Controls text boldness (bold, semibold, normal)mb-[size]
: Adds margin bottom (4, 6, 8, etc.)py-[size]
: Adds padding top and bottompx-[size]
: Adds padding left and right
Example of modifying text size:
<!-- Original -->
<h2 class="text-3xl font-bold">Enhance Your Photography</h2>
<!-- Modified to be larger -->
<h2 class="text-4xl font-bold">Enhance Your Photography</h2>
Located in the header section:
<div class="hidden md:flex space-x-6">
<a href="#features" class="text-gray-600 hover:text-black transition-colors">Features</a>
<a href="#benefits" class="text-gray-600 hover:text-black transition-colors">Benefits</a>
<a href="#faq" class="text-gray-600 hover:text-black transition-colors">FAQ</a>
</div>
To update:
- Locate the
href
attribute - Replace the value with your new link
- Update the text between
<a>
tags
Example:
<!-- Original -->
<a href="#features" class="text-gray-600 hover:text-black transition-colors">Features</a>
<!-- Modified -->
<a href="#products" class="text-gray-600 hover:text-black transition-colors">Products</a>
Found throughout the page:
<a href="https://projectnautica.com" class="inline-block bg-black text-white px-6 py-2 rounded-full hover:bg-gray-800 transition-colors">
Buy Now
</a>
Replace https://projectnautica.com
with your actual purchase or signup page URL.
Located at the bottom of the page:
<div>
<h4 class="font-semibold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Terms of Service</a></li>
</ul>
</div>
To link to policy pages:
- Create your privacy.html and terms.html files
- Update the href attributes:
<li><a href="privacy.html" class="text-gray-400 hover:text-white transition-colors">Privacy Policy</a></li>
<li><a href="terms.html" class="text-gray-400 hover:text-white transition-colors">Terms of Service</a></li>
-
Broken Links
- Check for typos in URLs
- Ensure file names match exactly
- Verify files are in the correct directory
-
Styling Problems
- Make sure Tailwind CSS is properly loaded
- Check for missing class names
- Verify closing tags are present
-
Responsive Design Issues
- Keep the
md:
prefix for desktop-specific styles - Don't remove the viewport meta tag
- Test on multiple screen sizes
- Keep the
If you encounter issues:
- Check the browser's developer tools (F12) for errors
- Verify all HTML tags are properly closed
- Ensure all files are in the correct location
- Compare your changes against the original code
Remember to always backup your files before making changes, and test your updates across different browsers and devices.