1.0.7 • Published 3 years ago

@mizandev/gatsby-mport v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Playful and Colorful One-Page portfolio featuring Parallax effects and animations. Especially designers and/or photographers will love this theme! Built with MDX and Theme UI.

Features

  • Theme UI-based theming
  • react-spring parallax effect
  • CSS Animations on Shapes
  • Light/Dark mode

Installation

Install as a starter

This will generate a new site (with the folder name "mport") that pre-configures use of the theme including example content and additional plugins.

gatsby new mport @mizandev/gatsby-mport

View the starter's code

Usage

Theme options

KeyDefault ValueDescription
basePath/Root url for the theme
mdxtrueConfigure gatsby-plugin-mdx (if your website already is using the plugin pass false to turn this off)

Example usage

// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `@mizandev/gatsby-mport`,
      options: {
        // basePath defaults to `/`
        basePath: `/sideproject`,
      },
    },
  ],
};

Additional configuration

In addition to the theme options, there are a handful of items you can customize via the siteMetadata object in your site's gatsby-config.js

// gatsby-config.js
module.exports = {
  siteMetadata: {
    // Used for the title template on pages other than the index site
    siteTitle: `Mizan M`,
    // Default title of the page
    siteTitleAlt: `Web & App Dev`,
    // Can be used for e.g. JSONLD
    siteHeadline: `Amazing Web & App creation with React, Angular, Laravel or WordPress`,
    // Will be used to generate absolute URLs for og:image etc.
    siteUrl: `https://mizan.dev`,
    // Used for SEO
    siteDescription: `Hi, I'm Mizan. I make aesthetic web & app experience for companies of all sizes`,
    // Will be set on the <html /> tag
    siteLanguage: `en`,
    // Used for og:image and must be placed inside the `static` folder
    siteImage: `/static/images/banner_512x512.png`,
    // Twitter Handle
    author: `@mizandev`,
  },
};

Shadowing

Please read the guide Shadowing in Gatsby Themes to understand how to customize the this theme! Generally speaking you will want to place your files into src/gatsby-mport to shadow/override files. The Theme UI config can be configured by shadowing its files in src/gatsby-plugin-theme-ui/.

Editing the content

The content of the page is managed by .mdx files inside the theme's sections folder. You can edit the files by shadowing them in your site.

These files are available: intro.mdx, projects.mdx, about.mdx, contact.mdx

mdx`:

# Hi, I'm Jane Doe

I'm creating noice web experiences for the next generation of consumer-facing companies

The other headings should be <h2> headings!

You also have access to the <ProjectCard /> component/shortcode which is used in the projects.mdx section. The component takes the props title (string), link (string), bg (string) and children (React.ReactNode).