This commit is contained in:
2023-09-09 23:02:56 +02:00
commit a9b62b8f8f
39 changed files with 12080 additions and 0 deletions

13
src/pages/imprint.js Normal file
View 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
View 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
View 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>
</>
);
}