A portfolio starter for Gatsby. The target audience are designers and photographers.
- TailwindCSS & Emotion
- React Spring
- Playful & Colorful One-Page website with Parallax effect
Based on gatsby-tailwind-demo.
If you want to quickly bootstrap a design/photography portfolio or use it as a foundation for your personal site the gatsby-starter-portfolio are a perfect fit for you! The project's goal is to offer minimalistic and fast websites.
I hope you like my starters and create something awesome! To see some of my work you can visit my website or support me on Patreon to get some neat rewards (4K images, project files, tutorial insights). Every pledge on Patreon helps me creating more free starters!
Also check out the other gatsby-starter-portfolio:
Check out the Gatsby Starter Portfolio Overview!
- Gatsby v2.0.0
- React Spring (Used for Parallax effect)
- TailwindCSS & Emotion for styling
- Use the full power of TailwindCSS while generating small styles (as unused data gets deleted)
- SEO
- Schema.org JSONLD
- OpenGraph Tags
- Twitter Tags
- Typefaces for quicker font loading
- Offline Support
- WebApp Manifest Support
- Responsive images
- The right image size for every screen size
- Traced SVG Loading (Lazy-Loading)
- WebP Support
Please note: The parallax effect can be quite heavy for some older CPUs and the site uses some newer CSS features which will result in incompatibility with older browsers.
Check your development environment! You'll need Node.js, the Gatsby CLI and node-gyp installed. The official Gatsby website also lists two articles regarding this topic:
To copy and install this starter run this command (with "project-name" being the name of your folder you wish to install it in):
gatsby new project-name https://github.com/LeKoArts/gatsby-starter-portfolio-cara
cd project-name
npm run develop
You can add other features by having a look at the offical plugins page
npm run build
Copy the content of the public
folder to your webhost or use a website like Netlify which automates that for you.
Make sure to use the right build command in your build settings e.g. if you use Netlify!
Per default Netlify sets it to gatsby build
but you have to use yarn run build
to run postcss before building the Gatsby site.
You have multiple options to configure this project.
- Use the
config/website.js
to configure data passed to the SEO component and other parts of the Gatsby site:
module.exports = {
pathPrefix: '/', // Prefix for all links. If you deploy your site to example.com/portfolio your pathPrefix should be "/portfolio"
siteTitle: 'Cara - Gatsby Starter Portfolio', // Navigation and Site Title
siteTitleAlt: 'Cara', // Alternative Site title for SEO
siteUrl: 'https://portfolio-cara.netlify.com', // Domain of your site. No trailing slash!
siteLanguage: 'en', // Language Tag on <html> element
siteLogo: '/logos/logo-1024.png', // Used for SEO and manifest
siteDescription: 'Playful & Colorful One-Page website with Parallax effect',
// siteFBAppID: '123456789', // Facebook App ID - Optional
userTwitter: '@cara', // Twitter Username
ogSiteName: 'cara', // Facebook Site Name
ogLanguage: 'en_US', // Facebook Language
// Manifest and Progress color
themeColor: tailwind.colors.orange,
backgroundColor: tailwind.colors.blue,
};
-
Use the
tailwind.js
file to configure TailwindCSS. Their documentation explains it step-by-setp. -
Modify the files in the
src/styles
directory. -
You can also place the icons somewhere else on the page, modify their animation and hide them on smaller screens:
<SVG icon="triangle" className={hidden} width={48} stroke={colors.orange} left="10%" top="20%" />
<SVG icon="hexa" width={48} stroke={colors.red} left="60%" top="70%" />
<SVG icon="box" width={6} fill={colors['grey-darker']} left="60%" top="15%" />
- For
icon
you have the options:triangle, circle, arrowUp, upDown, box, hexa
- If you want the SVG to be hidden on mobile view, add the
className={hidden}
- You can define the width via the TailwindCSS width option
- The colors get defined via the TailwindCSS color option
- Please note that you will either have to define the color in
stroke
orfill
depending on the icon. For referance have a look at the currently used SVGs
- Please note that you will either have to define the color in
- The options
left
andtop
position the icon relatively to its parent container - You can also wrap the SVGs with
<UpDown />
or<UpDownWide />
to animate them
Instead of relying on Google's CDN to host its fonts this site self-hosts the fonts and therefore profits from increased performance. The installed fonts can be found in src/pages/index.jsx
:
import 'typeface-cantata-one';
import 'typeface-open-sans';
We use typefaces by Kyle Mathews. Have a look at the repository if you want to install & use other fonts.
You'll also need to configure fonts
in tailwind.js
to reflect the changes. You then can use the fonts with font-sans
and font-serif
.