Skip to content

Latest commit

 

History

History
87 lines (86 loc) · 4.78 KB

TREE.md

File metadata and controls

87 lines (86 loc) · 4.78 KB

. ├── ./gatsby-config.js ├── ./LICENSE ├── ./makefile ├── ./netlify.toml ├── ./notes │   └── ./notes/cara-npm ├── ./package.json ├── ./package-lock.json ├── ./public │   ├── ./public/android-chrome-192x192.png │   ├── ./public/android-chrome-512x512.png │   ├── ./public/apple-touch-icon.png │   ├── ./public/apple-touch-icon-precomposed.png │   ├── ./public/banner.jpg │   ├── ./public/favicon-16x16.png │   ├── ./public/favicon-32x32.png │   ├── ./public/favicon.ico │   ├── ./public/index.html │   ├── ./public/manifest.webmanifest │   ├── ./public/page-data │   │   ├── ./public/page-data/404.html │   │   │   └── ./public/page-data/404.html/page-data.json │   │   ├── ./public/page-data/dev-404-page │   │   │   └── ./public/page-data/dev-404-page/page-data.json │   │   ├── ./public/page-data/index │   │   │   └── ./public/page-data/index/page-data.json │   │   └── ./public/page-data/sq │   │   └── ./public/page-data/sq/d │   │   └── ./public/page-data/sq/d/318001574.json │   ├── ./public/render-page.js │   ├── ./public/render-page.js.map │   └── ./public/static ├── ./README.md ├── ./src │   └── ./src/@lekoarts │   └── ./src/@lekoarts/gatsby-theme-cara │   ├── ./src/@lekoarts/gatsby-theme-cara/components │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/about.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/contact.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/footer.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/hero.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/layout.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/project-card.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/projects.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/components/seo.tsx │   │   └── ./src/@lekoarts/gatsby-theme-cara/components/svg.tsx │   ├── ./src/@lekoarts/gatsby-theme-cara/elements │   │   ├── ./src/@lekoarts/gatsby-theme-cara/elements/content.tsx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/elements/divider.tsx │   │   └── ./src/@lekoarts/gatsby-theme-cara/elements/inner.tsx │   ├── ./src/@lekoarts/gatsby-theme-cara/gatsby-plugin-theme-ui │   │   ├── ./src/@lekoarts/gatsby-theme-cara/gatsby-plugin-theme-ui/components.js │   │   └── ./src/@lekoarts/gatsby-theme-cara/gatsby-plugin-theme-ui/index.js │   ├── ./src/@lekoarts/gatsby-theme-cara/hooks │   │   └── ./src/@lekoarts/gatsby-theme-cara/hooks/use-site-metadata.tsx │   ├── ./src/@lekoarts/gatsby-theme-cara/sections │   │   ├── ./src/@lekoarts/gatsby-theme-cara/sections/about.mdx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/sections/contact.mdx │   │   ├── ./src/@lekoarts/gatsby-theme-cara/sections/intro.mdx │   │   └── ./src/@lekoarts/gatsby-theme-cara/sections/projects.mdx │   ├── ./src/@lekoarts/gatsby-theme-cara/styles │   │   ├── ./src/@lekoarts/gatsby-theme-cara/styles/animations.tsx │   │   └── ./src/@lekoarts/gatsby-theme-cara/styles/utils.tsx │   └── ./src/@lekoarts/gatsby-theme-cara/templates │   └── ./src/@lekoarts/gatsby-theme-cara/templates/cara.tsx ├── ./stackbit.yaml ├── ./static │   ├── ./static/apple-touch-icon-114x114.png │   ├── ./static/apple-touch-icon-120x120.png │   ├── ./static/apple-touch-icon-144x144.png │   ├── ./static/apple-touch-icon-152x152.png │   ├── ./static/apple-touch-icon-180x180.png │   ├── ./static/apple-touch-icon-57x57.png │   ├── ./static/apple-touch-icon-72x72.png │   ├── ./static/apple-touch-icon-76x76.png │   ├── ./static/apple-touch-icon.png │   ├── ./static/banner.jpg │   ├── ./static/favicon-16x16.png │   ├── ./static/favicon-32x32.png │   ├── ./static/favicon.ico │   ├── ./static/iconifier-readme.txt │   └── ./static/portfolio.png ├── ./TREE.md └── ./yarn.lock

21 directories, 63 files