Home

import React, { useState } from ‘react’; import { Cpu, Briefcase, GraduationCap, Mail, Phone, Globe, ExternalLink, ChevronRight, Menu, X, Award, PenTool, Layers, Layout, Star } from ‘lucide-react’; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); // Mapping theme.json colors to Tailwind classes // primary: #4f46e5 (indigo-600) // contrast: #0f172a (slate-900) // secondary: #64748b (slate-500) // accent: #eff6ff (blue-50) const navLinks = [ { name: ‘Summary’, href: ‘#summary’ }, { name: ‘AI Strategy’, href: ‘#ai-strategy’ }, { name: ‘Experience’, href: ‘#experience’ }, { name: ‘Education’, href: ‘#education’ } ]; return (
{/* Navigation */} {/* Mobile Menu */} {isMenuOpen && (
{navLinks.map(link => ( setIsMenuOpen(false)}>{link.name} ))}
)} {/* Hero Section (Replicating patterns/hero-section.php) */}
20+ Years Experience

Creative Design
Driven by
Innovation.

Senior Graphic Designer with 20+ years of high-impact visual delivery. Blending traditional artistry with modern AI workflows to solve business challenges.

{[1,2,3].map(i =>
)}
Trusted by 50+ Global Clients
{/* AI Strategy Section (Replicating patterns/ai-strategy.php) */}
Next-Gen Methodology

AI-Driven
Creative Strategy

I integrate ChatGPT and Google Gemini to streamline concept turnaround and enhance narrative storytelling, ensuring professional execution remains the core of every asset.

{[ “Prompt engineering for brand voice consistency”, “Rapid ideation and mood-boarding scalability”, “AI-assisted copywriting for campaign storytelling”, “Professional Adobe polishing of AI foundations” ].map((item, i) => (
{item}
))}
20+ Years Industry Exp
3x Speed to Market

Collaborative Execution

Balancing high-level creativity with strict business goals and client-ready visuals.

{/* Experience List (Replicating patterns/experience-list.php) */}

Professional Journey

Two decades of visual storytelling and brand leadership.

{[ { company: “Richardson Design and Illustration, LLC”, role: “Founder & Digital Designer”, period: “2012 – Present”, desc: “End-to-end design services for print, advertising, and digital marketing. Leading brand development and high-level vendor coordination.”, skills: [“Branding”, “Illustration”, “Client Management”] }, { company: “Digital Science Press, Inc.”, role: “Digital Marketing Admin”, period: “2014 – 2018”, desc: “Managed complex medical marketing collateral and executed global digital strategies across social, web, and email channels.”, skills: [“Digital Strategy”, “Scientific Visualization”, “KPI Alignment”] }, { company: “DataPath, Inc.”, role: “Graphic Designer”, period: “2005 – 2012”, desc: “Led visual development for all print marketing assets, advertisements, and product brochures with a focus on consistency.”, skills: [“Print Design”, “Layout”, “B2B Marketing”] } ].map((job, i) => (

{job.company}

{job.role}

{job.period}

{job.desc}

{job.skills.map(skill => ( {skill} ))}
))}
{/* Skills Grid Section */}

Core
Specialties

A diverse toolkit refined over thousands of projects for ad agencies, marketing firms, and print vendors.

{[ { title: “Visual Design”, icon: }, { title: “Brand Identity”, icon: }, { title: “UI/UX Layout”, icon: }, { title: “Motion Graphics”, icon: } ].map((skill, i) => (
{skill.icon}
{skill.title}
))}
{/* Education (Simple Grid) */}

Academic Foundation

{[ { school: “American Intercontinental University”, degree: “Associate in Business Admin”, meta: “Current Student, Dean’s List”, year: “2025-Present” }, { school: “Art Institute of Pittsburgh”, degree: “AS in Digital Design”, meta: “Dean’s Award”, year: “2006-2008” }, { school: “UA Little Rock”, degree: “Fine Arts Coursework”, meta: “Traditional Foundation”, year: “1992-1994” } ].map((edu, i) => (
{edu.year}

{edu.school}

{edu.degree}

{edu.meta}
))}
{/* Footer */}

CHARLES RICHARDSON

Senior Graphic Designer • Little Rock, AR

© 2026 Richardson Design. All rights reserved.

); };