Initial commit from gatsby: (https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme.git)
This commit is contained in:
27
src/pages/index.js
Normal file
27
src/pages/index.js
Normal file
@ -0,0 +1,27 @@
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user