Initial commit from gatsby: (https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme.git)
This commit is contained in:
13
src/pages/imprint.js
Normal file
13
src/pages/imprint.js
Normal file
@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
import { LegalSection, Page, Seo } from "gatsby-theme-portfolio-minimal";
|
||||
|
||||
export default function ImprintPage() {
|
||||
return (
|
||||
<>
|
||||
<Seo title="Imprint" useTitleTemplate={true} noIndex={true} />
|
||||
<Page>
|
||||
<LegalSection sectionId="imprint" heading="Imprint" />
|
||||
</Page>
|
||||
</>
|
||||
);
|
||||
}
|
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>
|
||||
</>
|
||||
);
|
||||
}
|
13
src/pages/privacy.js
Normal file
13
src/pages/privacy.js
Normal file
@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
import { LegalSection, Page, Seo } from "gatsby-theme-portfolio-minimal";
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<>
|
||||
<Seo title="Privacy Policy" useTitleTemplate={true} noIndex={true} />
|
||||
<Page>
|
||||
<LegalSection sectionId="privacy" heading="Privacy Policy" />
|
||||
</Page>
|
||||
</>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user