Creative Portfolio
A stunning portfolio template for designers and creatives. Showcase your work with beautiful galleries, smooth animations, and memorable interactions.
Overview
Make a Lasting Impression
Your portfolio is your digital handshake. This template helps you present your work in the most compelling way, with stunning visuals, smooth animations, and thoughtful interactions that leave visitors wanting more.
Stunning Hero Section
Animated intro that captures attention instantly
Dynamic Project Gallery
Filterable grid with lightbox and hover effects
Smooth Animations
Scroll-triggered animations and micro-interactions
Mobile Optimized
Perfect experience on every device
Blox Used
Perfect For
- • Designers & Illustrators
- • Photographers
- • Developers & Engineers
- • Freelancers & Agencies
Live Demo
Hello, I'm
Jane Designer
A creative designer crafting beautiful digital experiences that delight users and drive business results.
Selected Work
A collection of projects I'm proud of
Brand Identity
branding
Mobile App UI
ui design
Website Redesign
web
Logo Collection
branding
Dashboard Design
ui design
E-commerce Site
web
About Me
I'm a designer with 8+ years of experience creating digital products for startups and established brands. I believe great design is invisible – it just works.
Let's Work Together
Have a project in mind? I'd love to hear about it.
Implementation Guide
Create the Hero Section
Build an attention-grabbing hero with animated text and smooth transitions.
123456789101112131415161718192021222324252627282930313233function HeroSection() { return ( <section className="min-h-screen flex items-center justify-center relative overflow-hidden"> {/* Background gradient */} <div className="absolute inset-0 bg-gradient-to-br from-pink-500/20 via-purple-500/20 to-indigo-500/20" /> {/* Floating shapes */} <div className="absolute top-20 left-20 w-72 h-72 bg-pink-500/30 rounded-full blur-3xl animate-float" /> <div className="absolute bottom-20 right-20 w-96 h-96 bg-purple-500/20 rounded-full blur-3xl animate-float delay-300" /> <div className="relative z-10 text-center px-6"> <p className="text-pink-600 dark:text-pink-400 font-medium mb-4 animate-fade-in"> Hello, I'm </p> <h1 className="text-5xl md:text-7xl font-bold text-slate-900 dark:text-white mb-6 animate-slide-up"> Jane Designer </h1> <p className="text-xl text-slate-600 dark:text-slate-300 max-w-2xl mx-auto mb-8 animate-slide-up delay-100"> A creative designer crafting beautiful digital experiences that delight users and drive business results. </p> <div className="flex gap-4 justify-center animate-slide-up delay-200"> <a href="#work" className="px-6 py-3 bg-pink-600 text-white rounded-xl hover:bg-pink-700"> View My Work </a> <a href="#contact" className="px-6 py-3 border border-slate-300 dark:border-slate-700 rounded-xl hover:bg-slate-100 dark:hover:bg-slate-800"> Get in Touch </a> </div> </div> </section> ); }
Build the Project Gallery
Create a filterable project grid with smooth hover effects.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061const projects = [ { id: 1, title: "Brand Identity", category: "branding", image: "/project1.jpg" }, { id: 2, title: "Mobile App", category: "ui-design", image: "/project2.jpg" }, { id: 3, title: "Website Redesign", category: "web", image: "/project3.jpg" }, ]; function ProjectGallery() { const [filter, setFilter] = useState("all"); const categories = ["all", "branding", "ui-design", "web"]; const filteredProjects = filter === "all" ? projects : projects.filter(p => p.category === filter); return ( <section id="work" className="py-20 px-6"> <h2 className="text-3xl font-bold text-center mb-4">Selected Work</h2> <p className="text-center text-slate-600 dark:text-slate-400 mb-12"> A collection of projects I'm proud of </p> {/* Filter buttons */} <div className="flex justify-center gap-2 mb-12"> {categories.map(cat => ( <button key={cat} onClick={() => setFilter(cat)} className={`px-4 py-2 rounded-full text-sm font-medium transition-colors ${ filter === cat ? "bg-pink-600 text-white" : "bg-slate-100 dark:bg-slate-800 hover:bg-slate-200 dark:hover:bg-slate-700" }`} > {cat.replace("-", " ").replace(/\b\w/g, l => l.toUpperCase())} </button> ))} </div> {/* Project grid */} <div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto"> {filteredProjects.map(project => ( <div key={project.id} className="group cursor-pointer"> <div className="aspect-[4/3] rounded-2xl overflow-hidden bg-slate-100 dark:bg-slate-800 relative"> <img src={project.image} alt={project.title} className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500" /> <div className="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity flex items-end p-6"> <div> <h3 className="text-white font-semibold text-lg">{project.title}</h3> <p className="text-white/80 text-sm">{project.category}</p> </div> </div> </div> </div> ))} </div> </section> ); }
Add Testimonials Section
Build credibility with client testimonials carousel.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657const testimonials = [ { quote: "Jane transformed our brand completely. Her attention to detail is remarkable.", author: "Sarah Johnson", role: "CEO, TechStart", avatar: "/avatar1.jpg" }, { quote: "Working with Jane was a dream. She understood our vision perfectly.", author: "Michael Chen", role: "Founder, DesignCo", avatar: "/avatar2.jpg" } ]; function TestimonialsSection() { const [current, setCurrent] = useState(0); return ( <section className="py-20 bg-slate-50 dark:bg-slate-900/50"> <div className="max-w-4xl mx-auto px-6 text-center"> <h2 className="text-3xl font-bold mb-12">What Clients Say</h2> <div className="relative"> <blockquote className="text-2xl text-slate-700 dark:text-slate-300 mb-8"> "{testimonials[current].quote}" </blockquote> <div className="flex items-center justify-center gap-4"> <img src={testimonials[current].avatar} alt={testimonials[current].author} className="w-12 h-12 rounded-full" /> <div className="text-left"> <p className="font-semibold">{testimonials[current].author}</p> <p className="text-sm text-slate-500">{testimonials[current].role}</p> </div> </div> {/* Navigation dots */} <div className="flex justify-center gap-2 mt-8"> {testimonials.map((_, i) => ( <button key={i} onClick={() => setCurrent(i)} className={`w-2 h-2 rounded-full transition-colors ${ i === current ? "bg-pink-600" : "bg-slate-300 dark:bg-slate-700" }`} /> ))} </div> </div> </div> </section> ); }
Create Contact Section
Add a contact form with validation and success state.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263function ContactSection() { const [submitted, setSubmitted] = useState(false); const handleSubmit = (e: FormEvent) => { e.preventDefault(); // Handle form submission setSubmitted(true); }; if (submitted) { return ( <section id="contact" className="py-20 px-6 text-center"> <div className="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mx-auto mb-4"> <svg className="w-8 h-8 text-emerald-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M5 13l4 4L19 7" /> </svg> </div> <h2 className="text-2xl font-bold mb-2">Message Sent!</h2> <p className="text-slate-600 dark:text-slate-400">I'll get back to you soon.</p> </section> ); } return ( <section id="contact" className="py-20 px-6"> <div className="max-w-xl mx-auto"> <h2 className="text-3xl font-bold text-center mb-4">Let's Work Together</h2> <p className="text-center text-slate-600 dark:text-slate-400 mb-12"> Have a project in mind? I'd love to hear about it. </p> <form onSubmit={handleSubmit} className="space-y-6"> <div className="grid md:grid-cols-2 gap-6"> <input type="text" placeholder="Name" required className="px-4 py-3 bg-slate-100 dark:bg-slate-800 rounded-xl focus:outline-none focus:ring-2 focus:ring-pink-500" /> <input type="email" placeholder="Email" required className="px-4 py-3 bg-slate-100 dark:bg-slate-800 rounded-xl focus:outline-none focus:ring-2 focus:ring-pink-500" /> </div> <textarea placeholder="Tell me about your project..." rows={6} required className="w-full px-4 py-3 bg-slate-100 dark:bg-slate-800 rounded-xl focus:outline-none focus:ring-2 focus:ring-pink-500 resize-none" /> <button type="submit" className="w-full py-3 bg-pink-600 hover:bg-pink-700 text-white font-medium rounded-xl" > Send Message </button> </form> </div> </section> ); }
Full Source Code
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287"use client"; import { useState } from "react"; import Link from "next/link"; // Portfolio Landing Page export default function Portfolio() { return ( <div className="min-h-screen bg-white dark:bg-slate-950"> <Header /> <HeroSection /> <ProjectGallery /> <AboutSection /> <TestimonialsSection /> <ContactSection /> <Footer /> </div> ); } // Header Component function Header() { return ( <header className="sticky top-0 z-50 bg-white/80 dark:bg-slate-950/80 backdrop-blur-xl border-b border-slate-200 dark:border-slate-800"> <div className="max-w-6xl mx-auto px-6 h-16 flex items-center justify-between"> <Link href="/" className="text-xl font-bold text-slate-900 dark:text-white"> Jane.Design </Link> <nav className="hidden md:flex items-center gap-8"> {["Work", "About", "Services", "Contact"].map((item) => ( <a key={item} href={`#${item.toLowerCase()}`} className="text-sm font-medium text-slate-600 dark:text-slate-400 hover:text-slate-900 dark:hover:text-white transition-colors" > {item} </a> ))} </nav> <button className="px-4 py-2 bg-pink-600 hover:bg-pink-700 text-white text-sm font-medium rounded-lg transition-colors"> Hire Me </button> </div> </header> ); } // Hero Section function HeroSection() { return ( <section className="min-h-screen flex items-center justify-center relative overflow-hidden py-20 px-6"> {/* Background elements */} <div className="absolute inset-0 bg-gradient-to-br from-pink-500/10 via-purple-500/10 to-indigo-500/10" /> <div className="absolute top-20 left-20 w-72 h-72 bg-pink-500/20 rounded-full blur-3xl animate-float" /> <div className="absolute bottom-20 right-20 w-96 h-96 bg-purple-500/20 rounded-full blur-3xl animate-float delay-300" /> <div className="relative z-10 text-center max-w-4xl"> <p className="text-pink-600 dark:text-pink-400 font-medium mb-4"> Hello, I'm </p> <h1 className="text-5xl md:text-7xl font-bold text-slate-900 dark:text-white mb-6"> Jane Designer </h1> <p className="text-xl text-slate-600 dark:text-slate-300 max-w-2xl mx-auto mb-8"> A creative designer crafting beautiful digital experiences that delight users and drive business results. </p> <div className="flex gap-4 justify-center"> <a href="#work" className="px-6 py-3 bg-pink-600 hover:bg-pink-700 text-white font-medium rounded-xl transition-colors" > View My Work </a> <a href="#contact" className="px-6 py-3 border border-slate-300 dark:border-slate-700 text-slate-900 dark:text-white font-medium rounded-xl hover:bg-slate-100 dark:hover:bg-slate-800 transition-colors" > Get in Touch </a> </div> </div> </section> ); } // Project Gallery with Filtering function ProjectGallery() { const [filter, setFilter] = useState("all"); const projects = [ { id: 1, title: "Brand Identity", category: "branding", image: "/project1.jpg" }, { id: 2, title: "Mobile App UI", category: "ui-design", image: "/project2.jpg" }, { id: 3, title: "Website Redesign", category: "web", image: "/project3.jpg" }, { id: 4, title: "Logo Collection", category: "branding", image: "/project4.jpg" }, { id: 5, title: "Dashboard Design", category: "ui-design", image: "/project5.jpg" }, { id: 6, title: "E-commerce Site", category: "web", image: "/project6.jpg" }, ]; const categories = ["all", "branding", "ui-design", "web"]; const filteredProjects = filter === "all" ? projects : projects.filter(p => p.category === filter); return ( <section id="work" className="py-20 px-6 bg-slate-50 dark:bg-slate-900/50"> <div className="max-w-6xl mx-auto"> <h2 className="text-3xl font-bold text-center text-slate-900 dark:text-white mb-4"> Selected Work </h2> <p className="text-center text-slate-600 dark:text-slate-400 mb-12"> A collection of projects I'm proud of </p> {/* Filter buttons */} <div className="flex flex-wrap justify-center gap-2 mb-12"> {categories.map(cat => ( <button key={cat} onClick={() => setFilter(cat)} className={`px-4 py-2 rounded-full text-sm font-medium transition-colors ${ filter === cat ? "bg-pink-600 text-white" : "bg-white dark:bg-slate-800 text-slate-600 dark:text-slate-400 hover:bg-slate-100" }`} > {cat === "all" ? "All Work" : cat.replace("-", " ").replace(/\b\w/g, l => l.toUpperCase())} </button> ))} </div> {/* Project grid */} <div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> {filteredProjects.map(project => ( <Link key={project.id} href={`/projects/${project.id}`} className="group"> <div className="aspect-[4/3] rounded-2xl overflow-hidden bg-slate-200 dark:bg-slate-800 relative"> <img src={project.image} alt={project.title} className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500" /> <div className="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity flex items-end p-6"> <div> <h3 className="text-white font-semibold text-lg">{project.title}</h3> <p className="text-white/80 text-sm capitalize">{project.category.replace("-", " ")}</p> </div> </div> </div> </Link> ))} </div> </div> </section> ); } // About Section function AboutSection() { const stats = [ { value: "8+", label: "Years Experience" }, { value: "100+", label: "Projects Done" }, { value: "50+", label: "Happy Clients" }, ]; return ( <section id="about" className="py-20 px-6"> <div className="max-w-5xl mx-auto grid md:grid-cols-2 gap-12 items-center"> <div className="aspect-square rounded-2xl overflow-hidden"> <img src="/about-photo.jpg" alt="Jane Designer" className="w-full h-full object-cover" /> </div> <div> <h2 className="text-3xl font-bold text-slate-900 dark:text-white mb-4">About Me</h2> <p className="text-slate-600 dark:text-slate-300 mb-6"> I'm a designer with 8+ years of experience creating digital products for startups and established brands. I believe great design is invisible – it just works. </p> <p className="text-slate-600 dark:text-slate-300 mb-8"> My approach combines strategy, creativity, and technical expertise to create solutions that not only look beautiful but achieve business goals. </p> <div className="grid grid-cols-3 gap-6"> {stats.map((stat) => ( <div key={stat.label}> <div className="text-3xl font-bold text-pink-600">{stat.value}</div> <div className="text-sm text-slate-500">{stat.label}</div> </div> ))} </div> </div> </div> </section> ); } // Testimonials function TestimonialsSection() { const [current, setCurrent] = useState(0); const testimonials = [ { quote: "Jane transformed our brand completely. Her attention to detail is remarkable.", author: "Sarah Johnson", role: "CEO, TechStart", }, { quote: "Working with Jane was a dream. She understood our vision perfectly.", author: "Michael Chen", role: "Founder, DesignCo", }, ]; return ( <section className="py-20 bg-slate-50 dark:bg-slate-900/50"> <div className="max-w-4xl mx-auto px-6 text-center"> <h2 className="text-3xl font-bold text-slate-900 dark:text-white mb-12">What Clients Say</h2> <blockquote className="text-2xl text-slate-700 dark:text-slate-300 mb-8"> "{testimonials[current].quote}" </blockquote> <div> <p className="font-semibold text-slate-900 dark:text-white">{testimonials[current].author}</p> <p className="text-sm text-slate-500">{testimonials[current].role}</p> </div> <div className="flex justify-center gap-2 mt-8"> {testimonials.map((_, i) => ( <button key={i} onClick={() => setCurrent(i)} className={`w-2 h-2 rounded-full ${i === current ? "bg-pink-600" : "bg-slate-300 dark:bg-slate-700"}`} /> ))} </div> </div> </section> ); } // Contact Section function ContactSection() { return ( <section id="contact" className="py-20 px-6 bg-slate-900 text-white"> <div className="max-w-xl mx-auto text-center"> <h2 className="text-3xl font-bold mb-4">Let's Work Together</h2> <p className="text-slate-400 mb-8">Have a project in mind? I'd love to hear about it.</p> <form className="space-y-4 text-left"> <div className="grid md:grid-cols-2 gap-4"> <input type="text" placeholder="Name" className="px-4 py-3 bg-slate-800 rounded-xl focus:outline-none focus:ring-2 focus:ring-pink-500" /> <input type="email" placeholder="Email" className="px-4 py-3 bg-slate-800 rounded-xl focus:outline-none focus:ring-2 focus:ring-pink-500" /> </div> <textarea placeholder="Tell me about your project..." rows={6} className="w-full px-4 py-3 bg-slate-800 rounded-xl focus:outline-none focus:ring-2 focus:ring-pink-500 resize-none" /> <button className="w-full py-3 bg-pink-600 hover:bg-pink-700 font-medium rounded-xl transition-colors"> Send Message </button> </form> </div> </section> ); } // Footer function Footer() { return ( <footer className="py-8 px-6 border-t border-slate-200 dark:border-slate-800"> <div className="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center gap-4"> <p className="text-slate-500 text-sm">© 2024 Jane Designer. All rights reserved.</p> <div className="flex gap-4"> {["Dribbble", "Behance", "LinkedIn", "Twitter"].map(social => ( <a key={social} href="#" className="text-slate-500 hover:text-slate-900 dark:hover:text-white text-sm"> {social} </a> ))} </div> </div> </footer> ); }
Customization Guide
Personal Branding
Update colors and fonts to match your personal brand.
// tailwind.config.ts
module.exports = {
theme: {
extend: {
colors: {
brand: {
primary: '#ec4899', // Pink
secondary: '#8b5cf6', // Purple
}
},
fontFamily: {
display: ['Playfair Display', 'serif'],
body: ['Inter', 'sans-serif'],
}
}
}
}Animation Styles
Customize scroll animations and transitions.
// globals.css
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slide-up {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-slide-up { animation: slide-up 0.6s ease-out forwards; }Project Categories
Define your own project categories and filters.
const categories = [
{ id: "all", label: "All Work" },
{ id: "branding", label: "Branding" },
{ id: "ui-design", label: "UI Design" },
{ id: "web", label: "Web Development" },
{ id: "motion", label: "Motion Design" },
];
// Update project data
const projects = [
{
id: 1,
title: "Project Name",
category: "branding",
image: "/images/project1.jpg",
description: "Project description...",
link: "/projects/project-name",
year: 2024,
},
// ...more projects
];Social Links
Add your social media and professional links.
const socialLinks = [
{ name: "Dribbble", href: "https://dribbble.com/you", icon: DribbbleIcon },
{ name: "Behance", href: "https://behance.net/you", icon: BehanceIcon },
{ name: "LinkedIn", href: "https://linkedin.com/in/you", icon: LinkedInIcon },
{ name: "Twitter", href: "https://twitter.com/you", icon: TwitterIcon },
{ name: "GitHub", href: "https://github.com/you", icon: GitHubIcon },
];
// In footer or header
<div className="flex gap-4">
{socialLinks.map(link => (
<a
key={link.name}
href={link.href}
target="_blank"
rel="noopener noreferrer"
className="p-2 hover:bg-slate-100 dark:hover:bg-slate-800 rounded-lg"
>
<link.icon className="w-5 h-5" />
</a>
))}
</div>Ready to Showcase Your Work?
Copy this template, add your projects, and launch your professional portfolio today.