Files
portfolio/src/pages/index.js

28 lines
804 B
JavaScript

import React from "react";
import {
AboutSection,
ArticlesSection,
ContactSection,
HeroSection,
InterestsSection,
Page,
ProjectsSection,
Seo,
} from "gatsby-theme-portfolio-minimal";
export default function IndexPage() {
return (
<>
<Seo title="Gatsby Starter for Portfolio Minimal" />
<Page useSplashScreenAnimation>
<HeroSection sectionId="hero" />
<ArticlesSection sectionId="articles" heading="Latest Articles" sources={['Medium']} />
<AboutSection sectionId="about" heading="About Portfolio Minimal" />
<InterestsSection sectionId="details" heading="Details" />
<ProjectsSection sectionId="features" heading="Built-in Features" />
<ContactSection sectionId="github" heading="Issues?" />
</Page>
</>
);
}