This portfolio website showcases Jane Doe, a professional freelance web developer and UI/UX designer. The site features a modern, dark-themed design with a teal and indigo color scheme, built using Tailwind CSS for a fully responsive experience. Key sections include a compelling hero area, an "About Me" profile, a detailed "Services" offering (Web Design, Development, SEO, etc.), and a "Skills" section highlighting her technical expertise in frontend, backend, and various tools. The portfolio displays her latest projects with case studies, while client testimonials build credibility. A flexible "Pricing" section outlines three service packages, and a contact form provides a direct line for potential clients. The site is optimized for performance and user engagement with smooth animations and a mobile-friendly hamburger menu.
Basic Template Customization
1. Personal Information
Locate and replace these sections:
Name:
html
<!-- In Hero Section -->
<span class="text-teal-400">Jane Doe</span>
<!-- In About Section -->
<h2 class="text-4xl font-bold text-center text-teal-400 mb-12">About Me</h2>
<p class="mb-4">Hello! I'm Jane Doe, a passionate freelance web developer...</p>
Contact Details:
html
<!-- In Footer -->
<a href="mailto:your.email@example.com" class="hover:text-teal-400 transition-colors duration-300">
</a>
2. Brand/Logo
html
<!-- In Header -->
<a href="#" class="text-2xl font-bold text-teal-400">FreelancerPro</a>
<!-- In Footer -->
<a href="#" class="text-3xl font-bold text-teal-400 mb-4 md:mb-0">FreelancerPro</a>
🛠️ Content Sections to Edit
About Section
html
<!-- Update your bio, experience, and personal story -->
<div class="md:w-2/3 text-lg text-slate-300 fade-in-up">
<p class="mb-4">Your bio goes here...</p>
<p class="mb-4">Your experience and skills...</p>
<p>Personal interests or closing statement...</p>
</div>
Services Section
Edit the services you offer:
html
<div class="bg-slate-800 p-8 rounded-lg shadow-xl hover:shadow-2xl hover:scale-105 transition-all duration-300 fade-in-up">
<div class="text-5xl text-teal-500 mb-4">💡</div>
<h3 class="text-2xl font-bold mb-4">Web Design</h3>
<p class="text-slate-300">Your service description...</p>
</div>
Skills Section
Update your technical skills:
html
<span class="bg-teal-700 text-teal-100 px-5 py-2 rounded-full text-lg shadow-md">HTML5</span>
<!-- Replace with your skills -->
Portfolio Projects
Replace project details and images:
html
<div class="bg-slate-800 rounded-lg shadow-xl overflow-hidden hover:shadow-2xl hover:scale-105 transition-all duration-300 fade-in-up">
<img src="images/project-ecommerce.jpg" alt="Your project">
<div class="p-6">
<h3 class="text-2xl font-bold text-slate-100 mb-2">Your Project Title</h3>
<p class="text-slate-300 mb-4">Your project description...</p>
<!-- Update skills tags -->
<span class="bg-teal-600 text-sm px-3 py-1 rounded-full">Your Tech</span>
</div>
</div>
Testimonials
Replace with real client testimonials:
html
<div class="bg-slate-900 p-8 rounded-lg shadow-xl fade-in-up">
<div class="flex items-center mb-4">
<img src="images/testimonial-sarah.jpg" alt="Client photo">
<div>
<p class="font-bold text-slate-100 text-xl">Client Name</p>
<p class="text-teal-400">Client Position, Company</p>
</div>
</div>
<p class="text-slate-300 leading-relaxed italic">"Client testimonial..."</p>
</div>
Pricing Plans
Adjust prices and features:
html
<div class="text-5xl font-extrabold text-teal-400 mb-6">
$999<span class="text-2xl text-slate-300 font-normal">/project</span>
</div>
<ul class="text-slate-300 space-y-3 mb-8 flex-grow">
<li class="flex items-center"><span class="text-teal-500 mr-2">✔</span> Feature 1</li>
<!-- Add/remove features -->
</ul>
🎨 Customization Options
Color Scheme
Change the teal color throughout the template:
Fonts
In the <body> tag, change the font:
html
<body class="bg-slate-900 text-slate-100 font-sans leading-relaxed">
Options: font-serif, font-mono
Images
Replace placeholder images in the images/ folder:
📝 Quick Start Checklist
🔧 File Structure
text
your-portfolio/
├── index.html
├── style.css
├── script.js
└── images/
├── hero-bg.jpg
├── about-yourname.jpg
├── project-1.jpg
├── project-2.jpg
└── testimonial-1.jpg
💡 Pro Tips