gitextract_8ls6hy9s/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── __generated__/ │ └── globalTypes.d.ts ├── apollo.config.js ├── changelog.md ├── config.ts ├── contents/ │ ├── basepages/ │ │ ├── about/ │ │ │ └── index.mdx │ │ └── privacy-policy/ │ │ └── index.mdx │ ├── blog/ │ │ ├── something-cool/ │ │ │ └── index.mdx │ │ └── something-hot/ │ │ └── index.mdx │ └── portfolio/ │ ├── concerts/ │ │ └── index.mdx │ └── street-lights/ │ └── index.mdx ├── gatsby-config.js ├── gatsby-config.ts ├── gatsby-node.ts ├── package.json ├── schema.json ├── src/ │ ├── components/ │ │ ├── __generated__/ │ │ │ ├── CommentsQuery.d.ts │ │ │ ├── FooterLinksQuery.d.ts │ │ │ ├── LogoQuery.d.ts │ │ │ ├── NavigationListQuery.d.ts │ │ │ ├── NavigationQuery.d.ts │ │ │ └── ThemeQuery.d.ts │ │ ├── comments.tsx │ │ ├── contact.tsx │ │ ├── cookie.tsx │ │ ├── footer.tsx │ │ ├── item-blog.tsx │ │ ├── item-portfolio.tsx │ │ ├── layout.tsx │ │ ├── navigation-list.tsx │ │ ├── navigation.tsx │ │ ├── pagination.tsx │ │ ├── shortcodes/ │ │ │ └── index.tsx │ │ ├── sidebar.tsx │ │ ├── ui.tsx │ │ └── utils.tsx │ ├── pages/ │ │ ├── 404.tsx │ │ ├── __generated__/ │ │ │ ├── ContactQuery.d.ts │ │ │ └── IndexPageQuery.d.ts │ │ ├── contact.tsx │ │ └── index.tsx │ ├── style/ │ │ └── index.css │ ├── templates/ │ │ ├── __generated__/ │ │ │ ├── BasePagesQuery.d.ts │ │ │ ├── BlogListQuery.d.ts │ │ │ ├── BlogQuery.d.ts │ │ │ ├── PortfolioListQuery.d.ts │ │ │ └── PortfolioQuery.d.ts │ │ ├── basepages.tsx │ │ ├── blog-list.tsx │ │ ├── blog.tsx │ │ ├── portfolio-list.tsx │ │ ├── portfolio.tsx │ │ └── single-page.tsx │ └── utils/ │ ├── __generated__/ │ │ ├── SeoQuery.d.ts │ │ └── SocialQuery.d.ts │ ├── parallax.tsx │ ├── seo.tsx │ ├── sociallinks.tsx │ └── store.ts ├── tailwind.config.js └── tsconfig.json