Skip to content
/ devportfolio Public template

A modern, minimalist portfolio template built with Astro and Tailwind CSS. Perfect for developers looking to showcase their skills, experience, and projects in a clean, professional way.

License

Notifications You must be signed in to change notification settings

RyanFitzgerald/devportfolio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

78 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

image

DevPortfolio Template

A modern, minimalist portfolio template built with Astro and Tailwind CSS. Perfect for developers looking to showcase their skills, experience, and projects in a clean, professional way.

This was completely rebuilt from the ground up from V1. This template was built to be entirely ready to go with a quick config edit (see below) but also provides the ability to easily extend in whatever way you want.

This template also comes with CLAUDE.md and .cursor/rules files for easy integration with your existing AI workflows.

πŸ“¬ Connect & Share!
For questions and updates, feel free to reach out on X (Twitter).
If you've built and published your personal site with this template, I'd love to see it! Send me a DM πŸš€

Preview

To view a live preview of the site, click here.

Built With

  • Astro - Static site generator for modern web apps
  • Tailwind CSS v4 - Utility-first CSS framework
  • Tabler Icons - Free and open source icons
  • TypeScript - For type-safe configuration

Updating the Template

Configuration

The template is designed to be easily customizable through the src/config.ts file. This single file controls:

  • Personal Information: Name, title, description
  • Accent Color: Primary color theme (changing this will change the accent color site wide)
  • Social Links: Email, LinkedIn, Twitter, GitHub (all optional)
  • About Section: Personal bio/description
  • Skills: List of technical skills
  • Projects: Project showcase with descriptions and links
  • Experience: Work history with bullet points
  • Education: Educational background and achievements

If skills, projects, experience, or education are removed from the config, those sections will be hidden entirely.

Example structures

Here's what the config data structure looks like for each section:

Basic Information

name: "Your Name",
title: "Your Job Title",
description: "Brief site description",
accentColor: "#1d4ed8", // Hex color for theme

Social Links (all optional)

social: {
  email: "your-email@example.com",
  linkedin: "https://linkedin.com/in/yourprofile",
  twitter: "https://twitter.com/yourprofile", 
  github: "https://github.com/yourusername",
}

About Section

aboutMe: "A paragraph describing yourself, your background, interests, and what you're passionate about. This appears in the About section of your portfolio."

Skills

skills: ["JavaScript", "React", "Node.js", "Python", "AWS", "Docker"]

Projects

projects: [
  {
    name: "Project Name",
    description: "Brief description of what the project does and its impact",
    link: "https://github.com/yourusername/project",
    skills: ["React", "Node.js", "AWS"], // Technologies used
  }
]

Experience

experience: [
  {
    company: "Company Name",
    title: "Your Job Title",
    dateRange: "Jan 2022 - Present",
    bullets: [
      "Led development of microservices architecture serving 1M+ users",
      "Reduced API response times by 40% through optimization",
      "Mentored team of 5 junior developers",
    ],
  }
]

Education

education: [
  {
    school: "University Name",
    degree: "Bachelor of Science in Computer Science",
    dateRange: "2014 - 2018",
    achievements: [
      "Graduated Magna Cum Laude with 3.8 GPA",
      "Dean's List all semesters",
      "President of Computer Science Club"
    ]
  }
]

Icons

The template uses Tabler Icons for all icons. If you wish to add more icons and have it look consistent with what's already there, you can browse through their extensive icon library.

Project Structure

devportfolio/
β”œβ”€β”€ public/
β”‚   └── favicon.svg          # Site favicon
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ components/          # Astro components
β”‚   β”‚   β”œβ”€β”€ About.astro      # About section
β”‚   β”‚   β”œβ”€β”€ Education.astro  # Education section
β”‚   β”‚   β”œβ”€β”€ Experience.astro # Work experience section
β”‚   β”‚   β”œβ”€β”€ Footer.astro     # Site footer
β”‚   β”‚   β”œβ”€β”€ Header.astro     # Navigation header
β”‚   β”‚   β”œβ”€β”€ Hero.astro       # Hero/intro section
β”‚   β”‚   └── Projects.astro   # Projects showcase
β”‚   β”œβ”€β”€ pages/
β”‚   β”‚   └── index.astro      # Main page layout
β”‚   β”œβ”€β”€ styles/
β”‚   β”‚   └── global.css       # Global styles
β”‚   └── config.ts            # Site configuration
β”œβ”€β”€ astro.config.mjs         # Astro configuration
β”œβ”€β”€ package.json             # Project dependencies
β”œβ”€β”€ tailwind.config.js       # Tailwind configuration
└── tsconfig.json            # TypeScript configuration

Local Development

If you'd like to run it locally:

git clone https://github.com/RyanFitzgerald/devportfolio.git
cd devportfolio
npm install

After that, start up the Astro dev server with:

npm run dev

Deployment

The template can be deployed to any static hosting service easily (and in most cases, completely free). Here are some options:

Want to deploy somewhere else? Find more guides here.

Changelog

To view the changelog, see CHANGELOG.md.

License

This project is fully and completely MIT. See LICENSE.md.

Questions?

Feel free to reach out on X (Twitter) if you have any questions or need help.

About

A modern, minimalist portfolio template built with Astro and Tailwind CSS. Perfect for developers looking to showcase their skills, experience, and projects in a clean, professional way.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published