
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
gatsby-theme-chronogrove
Advanced tools
A beautiful Gatsby theme for personal websites and blogs with built-in social media widgets. Features a dashboard-style home page that showcases your recent activity across multiple platforms.
npm install gatsby-theme-chronogrove
# or
yarn add gatsby-theme-chronogrove
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: 'gatsby-theme-chronogrove',
options: {
siteMetadata: {
title: 'My Personal Website',
description: 'A personal website and blog',
headline: 'My Name',
subhead: 'Personal blog and portfolio'
}
}
}
]
}
The theme uses a modular configuration system that allows you to customize every aspect of your site through theme options.
{
resolve: 'gatsby-theme-chronogrove',
options: {
siteMetadata: {
// Core site information
title: 'My Personal Website',
description: 'A personal website and blog',
siteUrl: 'https://example.com',
baseURL: 'https://example.com',
languageCode: 'en',
// Personal branding
headline: 'My Name',
subhead: 'Personal blog and portfolio',
avatarURL: '/images/avatar.jpg',
imageURL: '/images/og-image.png',
// Contact information (hCard microformat)
hCard: {
email: 'mail@example.com',
givenName: 'Given',
familyName: 'Name',
locality: 'City',
region: 'ST',
countryName: 'Country',
category: 'Professional Title',
photoURL: '/images/avatar.jpg'
},
// Social media
social: {
twitterUsername: '@username'
},
// Footer
footerText: 'Made with ❤️',
// SEO
titleTemplate: '%s · My Website'
}
}
}
Customize your site's navigation menu:
{
resolve: 'gatsby-theme-chronogrove',
options: {
navigation: {
header: {
// Main navigation links (top of page)
left: [
{
path: '/about',
slug: 'about',
text: 'About',
title: 'About Me'
},
{
path: '/blog',
slug: 'blog',
text: 'Blog',
title: 'Latest posts from the blog'
},
{
path: '/projects',
slug: 'projects',
text: 'Projects',
title: 'My projects'
}
],
// Home page navigation (dashboard sections)
home: [
{
path: '#github',
slug: 'github',
text: 'GitHub',
title: 'GitHub Activity'
},
{
path: '#instagram',
slug: 'instagram',
text: 'Instagram',
title: 'Instagram Photos'
},
{
path: '#goodreads',
slug: 'goodreads',
text: 'Goodreads',
title: 'Reading Activity'
}
]
}
}
}
}
Configure social media widgets for your dashboard:
{
resolve: 'gatsby-theme-chronogrove',
options: {
widgets: {
github: {
username: 'your-github-username',
widgetDataSource: 'https://your-api.com/widgets/github'
},
instagram: {
username: 'your-instagram-username',
widgetDataSource: 'https://your-api.com/widgets/instagram'
},
goodreads: {
username: 'your-goodreads-username',
widgetDataSource: 'https://your-api.com/widgets/goodreads'
},
spotify: {
username: 'your-spotify-username',
widgetDataSource: 'https://your-api.com/widgets/spotify'
},
steam: {
username: 'your-steam-username',
widgetDataSource: 'https://your-api.com/widgets/steam'
},
flickr: {
username: 'your-flickr-username',
widgetDataSource: 'https://your-api.com/widgets/flickr'
}
}
}
}
Create blog posts using MDX in your content/blog/
directory:
---
title: 'My First Blog Post'
date: '2024-01-01'
category: 'blog'
slug: 'my-first-post'
---
# My First Blog Post
This is my first blog post using Gatsby Theme Chronogrove!
## Features
- **MDX Support**: Write in Markdown with React components
- **Syntax Highlighting**: Code blocks with Prism.js
- **Responsive Images**: Optimized images with Gatsby Image
- **SEO**: Automatic meta tags and structured data
Create music posts in your content/music/
directory:
---
title: 'My New Song'
date: '2024-01-01'
category: 'music'
slug: 'my-new-song'
---
# My New Song
Listen to my latest track!
<Spotify trackId='4iV5W9uYEdYUVa79Axb7Rh' />
The theme uses Theme UI for styling. You can customize the theme by shadowing the theme file:
// src/gatsby-theme-chronogrove/gatsby-plugin-theme-ui/index.js
import { theme } from 'gatsby-theme-chronogrove/src/gatsby-plugin-theme-ui'
export default {
...theme,
colors: {
...theme.colors,
primary: '#007acc',
secondary: '#ff6b6b'
}
}
Shadow any component by creating a file with the same name in your src/gatsby-theme-chronogrove/components/
directory:
// src/gatsby-theme-chronogrove/components/home-header-content.js
import React from 'react'
export default function HomeHeaderContent() {
return (
<div>
<h1>Custom Header Content</h1>
<p>This replaces the default header content.</p>
</div>
)
}
# Clone the repository
git clone https://github.com/chrisvogt/gatsby-theme-chronogrove.git
cd gatsby-theme-chronogrove
# Install dependencies
yarn install
# Start development server
yarn workspace www.chrisvogt.me develop
The theme includes comprehensive testing with 459 passing tests:
# Run all tests
yarn test
# Run tests in watch mode
yarn test:watch
# Generate coverage report
yarn test:coverage
Test Coverage:
useNavigationData
hook to return empty object when navigation data is missinguseStaticQuery
and graphql
in component testsgit checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by Chris Vogt
Current Version: v0.51.0
FAQs
A personal website and digital garden theme for GatsbyJS.
The npm package gatsby-theme-chronogrove receives a total of 12 weekly downloads. As such, gatsby-theme-chronogrove popularity was classified as not popular.
We found that gatsby-theme-chronogrove demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.