Convert Figma logo to code with AI

RyanFitzgerald logodevportfolio

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.

4,547
3,975
4,547
1

Top Related Projects

⚡️ A minimal portfolio template for Developers

My self coded personal website build with React.js

7,987

Fourth iteration of my personal website built with Gatsby

Vertical timeline for React.js

Quick Overview

DevPortfolio is a lightweight, customizable portfolio template for developers. It's designed to be easily customized and deployed, allowing developers to showcase their projects and skills with minimal setup. The template is built using HTML, CSS, and JavaScript, making it accessible for developers of all skill levels.

Pros

  • Easy to customize and deploy
  • Responsive design that works well on various devices
  • Clean and modern aesthetic
  • Includes sections for projects, skills, and experience

Cons

  • Limited advanced features compared to more complex portfolio solutions
  • Requires manual updates for content changes
  • May look similar to other portfolios using the same template without significant customization

Getting Started

  1. Fork the repository on GitHub
  2. Clone your forked repository to your local machine
  3. Open index.html in a text editor and update the content with your information
  4. Customize the styles in css/styles.css if desired
  5. Add your project images to the images folder
  6. Commit and push your changes to GitHub
  7. Enable GitHub Pages in your repository settings to deploy your portfolio

For a quick preview, you can simply open index.html in your web browser after making changes.

Competitor Comparisons

⚡️ A minimal portfolio template for Developers

Pros of simplefolio

  • More modern and visually appealing design
  • Includes dark mode functionality
  • Better mobile responsiveness

Cons of simplefolio

  • Less customization options out-of-the-box
  • Requires more setup and configuration
  • Heavier reliance on JavaScript

Code Comparison

simplefolio:

import initScrollReveal from "./utils/scrollReveal";
import initTiltEffect from "./utils/tiltAnimation";
import { targetElements, defaultProps } from "./data/scrollRevealConfig";

initScrollReveal(targetElements, defaultProps);
initTiltEffect();

devportfolio:

$(document).ready(function() {
    $('a.smoothscroll').on('click', function(e) {
        e.preventDefault();
        var target = this.hash,
        $target = $(target);
        $('html, body').stop().animate({
            'scrollTop': $target.offset().top
        }, 800, 'swing', function() {
            window.location.hash = target;
        });
    });
});

The code comparison shows that simplefolio uses more modern JavaScript practices with imports and modular structure, while devportfolio relies on jQuery for functionality. This reflects the overall difference in approach between the two projects, with simplefolio being more contemporary but potentially more complex to set up and customize.

My self coded personal website build with React.js

Pros of Portfolio

  • More modern and visually appealing design with animations and interactive elements
  • Built with React, offering a more dynamic and responsive user experience
  • Includes additional sections like blogs and testimonials for a more comprehensive portfolio

Cons of Portfolio

  • More complex setup and deployment process due to React framework
  • Potentially slower load times compared to the lightweight DevPortfolio
  • Requires more technical knowledge to customize and maintain

Code Comparison

DevPortfolio (HTML):

<section id="about">
  <div class="container">
    <h2 class="heading">About Me</h2>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
  </div>
</section>

Portfolio (React):

const About = () => {
  return (
    <Container fluid className="about-section">
      <Container>
        <Row style={{ justifyContent: "center", padding: "10px" }}>
          <Col md={7} style={{ justifyContent: "center", paddingTop: "30px", paddingBottom: "50px" }}>
            <h1 style={{ fontSize: "2.1em", paddingBottom: "20px" }}>
              Know Who <strong className="purple">I'M</strong>
            </h1>
            <Aboutcard />
          </Col>
          <Col md={5} style={{ paddingTop: "120px", paddingBottom: "50px" }} className="about-img">
            <img src={laptopImg} alt="about" className="img-fluid" />
          </Col>
        </Row>
      </Container>
    </Container>
  );
};
7,987

Fourth iteration of my personal website built with Gatsby

Pros of v4

  • More modern and visually appealing design
  • Utilizes Gatsby for improved performance and SEO
  • Includes a dark mode feature

Cons of v4

  • More complex setup and configuration
  • Requires knowledge of React and Gatsby
  • Less customizable for users without coding experience

Code Comparison

v4 (React/Gatsby):

const IndexPage = ({ data }) => (
  <Layout location={location}>
    <Hero data={data.hero.edges} />
    <About data={data.about.edges} />
    <Jobs data={data.jobs.edges} />
    <Featured data={data.featured.edges} />
    <Projects data={data.projects.edges} />
    <Contact data={data.contact.edges} />
  </Layout>
);

devportfolio (HTML/CSS/JS):

<div id="lead">
    <div id="lead-content">
        <h1>Ryan Fitzgerald</h1>
        <h2>Software Engineer</h2>
        <a href="#" class="btn-rounded-white">Download Resume</a>
    </div>
    <!-- Lead overlay -->
    <div id="lead-overlay"></div>
    <!-- Lead down -->
    <div id="lead-down">
        <span>
            <i class="fa fa-chevron-down" aria-hidden="true"></i>
        </span>
    </div>
</div>

The code comparison shows that v4 uses a more component-based approach with React and Gatsby, while devportfolio uses traditional HTML structure with separate CSS and JavaScript files. v4's approach allows for better code organization and reusability, but requires more advanced development skills.

Vertical timeline for React.js

Pros of react-vertical-timeline

  • Focused on creating vertical timelines, offering a specialized and polished solution
  • Built with React, providing better integration for React-based projects
  • Offers more customization options for timeline elements

Cons of react-vertical-timeline

  • Limited to timeline functionality, less versatile for full portfolio creation
  • Requires more setup and configuration compared to the all-in-one devportfolio
  • May have a steeper learning curve for developers new to React

Code Comparison

devportfolio (HTML):

<section id="experience">
  <h2 class="heading">Experience</h2>
  <div id="experience-timeline">
    <div data-date="September 2015 – September 2016">
      <h3>Employer Name</h3>
      <h4>Job Title</h4>
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
    </div>
  </div>
</section>

react-vertical-timeline (JSX):

import { VerticalTimeline, VerticalTimelineElement } from 'react-vertical-timeline-component';

<VerticalTimeline>
  <VerticalTimelineElement
    className="vertical-timeline-element--work"
    date="2011 - present"
    iconStyle={{ background: 'rgb(33, 150, 243)', color: '#fff' }}
  >
    <h3 className="vertical-timeline-element-title">Creative Director</h3>
    <h4 className="vertical-timeline-element-subtitle">Miami, FL</h4>
    <p>Creative Direction, User Experience, Visual Design, Project Management, Team Leading</p>
  </VerticalTimelineElement>
</VerticalTimeline>

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Dev Portfolio

🎉 Interested in learning all about full-stack Chrome Extension development? My latest course, Chrome Extension Mastery: Build Full-Stack Extensions with React & Node.js, is now live! 🎉

🚀 Dev Portfolio V2 has arrived. Meet Devfolio, a modern portfolio + blog template built with GatsbyJS and TailwindCSS 🚀

This repo contains an easy-to-customize personal dev portfolio template that was created with Sass and JavaScript. It is lightweight and fully responsive, as well as comes with the Bootstrap grid system and loaded with Font Awesome. The site is static and comes production ready if you just want to add your information and go. Alternatively, you can edit styles, colours, and scripts fairly easily. The site was built as modular as possible to make it easy to shift around styles and content.

To view a live demo, click here.

Looking for a blog template? Checkout DevBlog.

Features

  • Gulp ready (compiles Sass and minifies JS)
  • Sass ready with lots of commenting
  • Fully responsive
  • Comes with Bootstrap grid system
  • Easy colour changes can be done through simple variable edits

Contents

Setup and Configuration

The setup required can be broken into two types:

  1. If you want to make edits or customize the template
  2. If you just want to add your information as use as is

Making Edits / Customizing the Template

To setup, simply fork the repo and run npm install in order to get all the Gulp dev dependencies. Next, run Gulp watch to compile the Sass and minify the JavaScript. Alternatively, if you don't have Gulp installed globally, you can run the npm script npm run watch. Any changes done to the JavaScript (js/scripts.js) or Sass (sass/styles.scss) will be autocompiled and ready to go.

All scripts are within js/scripts.js and get minified to js/scripts.min.js. All styles are in sass/styles.scss and get compiled to css/styles.css. Both the minified scripts file and compiled CSS file are what is loaded on the page by default.

At this point, the page is ready to go and you can begin to add your own information and make any needed changes. The sections below contains a quick breakdown of each of the default sections and how they work.

Using The Template As Is

If you wish to use the template as is (i.e. how it's seen in the demo), then all that's required is the css, images, js, libs folders and the index.html file. You would then add your content to index.html as needed and you're good to go!

Customization and Editing

General

In general, most styles on the page are based off the definitions of variables in the variable section of the style sheet:

// Define base and accent colors
$base-color: #3498db;
$base-color-hover: darken($base-color, 10%);

// Define background colors
$background: #fff;
$background-alt: #f2f2f5;

// Define border colors
$border: #dcd9d9;

// Define text colors
$heading: #374054;
$text: #74808a;

If you wish to change the general colour scheme of the page for example, simply change the value of $base-color.

There is also a number of default CSS classes that can be applied such as .shadow, .shadow-large, .btn-rounded-white, and various others. These can be found under the General Styles section in the style sheet.

Images

By default, the template comes with a number of images, some of which can be kept and others which act simply as placeholders and should be switched. The template contains the following:

  • Main background (images/lead-bg.jpg) - this is the main background image provided via Unsplash. This can be kept or changed easily by replacing images/lead-bg.jpg with your new background (recommended size of at least 1920x1080).
  • Favicon (/favicon.ico) - this is the favicon used for the page. Similar to the main bg, this can be kept or changed easily by replacing the favicon.ico with your new one.
  • Project image - these are the images associated with the projects under the project section. These are simply placeholders and should either be replaced or removed.

Header Section

The header section can be found within the <header> tag and simply contains an unordered list of anchors to different sections of the page. If you add a new section and want to be able to quickly navigate to it from the top, simply add another list element with an anchor that has the href of the ID of the section. Conversely, if you remove a section, don't forget to remove the associated navigation element.

If you wish to add a header link to an external page, simply add the class no-scroll to the anchor. For example:

<li>
    <a href="https://google.com" class="no-scroll">Google</a>
</li>

If you wish to have a sticky (fixed) header, you simply need to add a class of sticky to the main header. For example, that would be accomplished as follows:

<header class="sticky">
    <!-- Header content -->
</header>

Lead Section

The Lead section is pretty straightforward, it contains an h1 for your name and an h2 for your title. It also contains a link that can be used to link to your resume should you wish to add it as well.

If you want your resume to automatically download when the button is clicked instead of opening up in another tab (the default behaviour), add the following code (Thanks to jkfran for the suggestion) in the lead:

<a href="path/to/resume.pdf" download="resume.pdf" class="btn-rounded-white">Download Resume</a>

The href attribute points to where your resume is stored and the download attribute is what triggers the download / provides the name the file will be downloaded as when the user clicks the button (In this case, it will download as resume.pdf).

About Section

The about section contains a quick about blurb that can be edited by changing the text within the paragraph tags.

Experience Section

The experience section creates a vertical timeline with all your relevant experience. The code for the timeline creation can be found within js/scripts.js and is an adaptation of RyanFitzgerald/vertical-timeline.

The default format is as follows:

<div id="experience-timeline">
    <div data-date="September 2015 – September 2016">
        <h3>Employer Name</h3>
        <h4>Job Title</h4>
        <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in iaculis ex.
        </p>
    </div>
</div>

The data attribute data-date is what is used to add a date to the associated timeline point. All that is really required is a wrapping div (i.e. #experience-timeline) and nested divs to build the timeline. The h3, h4, and p tags are optional and the contents of the div can be styled however you wish.

To add an additional section, simply add additional nested divs under the main wrapping div.

Education Section

The Education is just a series of .education-block classes with some details associated with them. By default, it shows school name, date, degree, and some additional details. For example:

<div class="education-block">
    <h3>University of Ottawa</h3>
    <span class="education-date">Sept 2016 - Sept 2017</span>
    <h4>Bachelor of Science in Computer Science</h4>
    <p>
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in iaculis ex.
    </p>
</div>

To add additional section, simply add additional .education-block elements.

Projects Section

The Project section contains a number of .project elements that represent each of your projects. By default, it contains a 300x300 image under .project-image and relevant project information under .project-info. An example is as follows:

<div class="project">
    <div class="project-image">
        <img src="images/project.jpg" />
    </div>
    <!-- End .project-image -->

    <div class="project-info">
        <h3>Project Name Here</h3>
        <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in iaculis ex.
        </p>
        <a href="#">View Project</a>
    </div>
    <!-- End .project-info -->
</div>

If you want to hide some projects by default, you can throw them in an additional row and add the markup for the "Show More" button. This would be done as follows:

<!-- Projects Above -->

<a id="view-more-projects" href="#">View More Projects</a>
<div id="more-projects" class="row">
    <div class="project shadow-large">
        <div class="project-image">
            <img src="images/project.jpg" />
        </div>
        <!-- End .project-image -->
        <div class="project-info">
            <h3>Project Name Here</h3>
            <p>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in iaculis ex. Etiam volutpat laoreet urna. Morbi ut tortor nec nulla commodo malesuada sit amet vel lacus. Fusce eget efficitur libero. Morbi dapibus porta quam laoreet placerat.
            </p>
            <a href="#">View Project</a>
        </div>
        <!-- End .project-info -->
    </div>
    <!-- End .project -->
</div>

This will add a link that says "View More Projects" under the current projects and when clicked, all projects in the "More-projects" div will be shown. This is optional functionality and isn't provided by default. It is important that you keep the wrapping div ID intact ("#more-projects") as well as the anchor ID ("#view-more-projects"), however the contents of the div and the anchor text itself can be edited however you like.

Projects without images

If you do not wish to have a project image associated with a project, you can simply add no-image as an additional class to the project. It would look like the following:

<div class="project no-image">
    <div class="project-info">
        <h3>Project Name Here</h3>
        <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in iaculis ex.
        </p>
        <a href="#">View Project</a>
    </div>
    <!-- End .project-info -->
</div>

Skills Section

The Skills section is simply an unordered list that spits out a "Skill Cloud" with all the skills listed. To add / remove skills, simply edit or add list elements, like so:

<ul>
    <li>JavaScript</li>
    <li>Python</li>
    <li>Ruby</li>
    <li>Go</li>
    <li>Node.js</li>
</ul>

Contact Section

Since the page is static, I opted to use the awesome Formspree to allow for a contact form without the need for anything else. To use it, you must have the page hosted on a server (loading a basic HTML page won't work) where a referrer header is generated. Also, simply add the email to the action. An example is as follows:

<form method="POST" action="https://formspree.io/email@email.com">
    <input type="hidden" name="_subject" value="Contact request from personal website" />
    <input type="email" name="_replyto" placeholder="Your email" required>
    <textarea name="message" placeholder="Your message" required></textarea>
    <button type="submit">Send</button>
</form>

For more information on configuration of the contact form or dealing with errors, check out Formspree.

For a quick tutorial about formspree, check out this tutsplus tutorial that covers different aspects and features of the form tool.

Footer Section

The Footer contains an optional copyright where you can place your name as well as an unordered list of all of your social or coding related profiles. By default it contains Github, Stack Overflow, Facebook, Twitter, and Google Plus. You can add or remove them easily and simply use the Font Awesome icon associated with the social profile you wish to use. For a list of all icons, click here.

Optional Sections

The template comes with an optional section that can be added to the page markup to list things like Certifications, Hobbies, and more (Note: these are not included by default). The markup for the additional optional section is as follows:

<div class="optional-section background-alt">
    <h2 class="heading">Section Name</h2>

    <div class="optional-section-block">
        <h3>Some content title</h3>
        <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur in iaculis ex. Etiam volutpat laoreet urna. Morbi ut tortor nec nulla commodo malesuada sit amet vel lacus. Fusce eget efficitur libero. Morbi dapibus porta quam laoreet placerat.
        </p>
        <ul>
            <li>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit.
            </li>
            <li>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit.
            </li>
            <li>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit.
            </li>
        </ul>
    </div>
    <!-- End .optional-section-block -->

</div>
<!-- End .optional-section -->

You can copy .optional-section-block for each new item you wish you have in the optional section. Also, the background-alt class may need to be removed depending on where the optional section is placed in your layout as this adds the grey background. If you play it at the bottom after "Skills", it can be used as is. Also, by default the border is applied at the top, but this can also be adjusted as needed.

The optional section blocks have styling for h3 (the block title), h4, p, and ul tags by default.

Changelog

1.2.2

  • Updated dependencies and gulpfile

1.2.1

  • Updated dependencies and gulpfile
  • Added no-image optional class for projects without images (see above for usage)

1.2.0

  • Added support for optional "Show More Projects" that hides some projects by default if included
  • Added optional sections to display certifications, languages, etc.

1.1.3

  • Added default favicon to be used or changed
  • Added sticky class to make header fixed
  • Updated docs to add image section

1.1.2

  • Added no-scroll class option to header navigation anchor if you want to link to external site
  • Changed contact form input / textarea colours to be based off $base-color
  • Changed main background to 100vh so it doesn't overflow if viewport height < 700px

1.1.1

  • Made input placeholder text more readable
  • Removed timeline line when no JS
  • Added some basic styling to timeline when no JS

1.1.0

  • Fixed menu toggle on mobile devices
  • Fixed z-index / scrolling issue with mobile menu
  • Mobile menu now closes once a nav element is hit

License

Completely free (MIT)! See LICENSE.md for more.