├── .env.example ├── .gitignore ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── package.json ├── src ├── components │ ├── layout.tsx │ ├── page-posts.tsx │ ├── page.tsx │ ├── post-featured-image.tsx │ ├── post-teaser.tsx │ └── post.tsx ├── fragments │ ├── menu-fragment.ts │ ├── post-fragment.ts │ └── settings-fragment.ts ├── hooks │ ├── use-wp-menu.tsx │ ├── use-wp-post.tsx │ └── use-wp-settings.tsx ├── pages │ ├── 404.tsx │ ├── index.tsx │ ├── {WpPage.slug}.tsx │ └── {WpPost.slug}.tsx ├── styles │ ├── style.css │ └── twentytwentyone.css └── utils │ └── apply-filters.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/package.json -------------------------------------------------------------------------------- /src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/components/layout.tsx -------------------------------------------------------------------------------- /src/components/page-posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/components/page-posts.tsx -------------------------------------------------------------------------------- /src/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/components/page.tsx -------------------------------------------------------------------------------- /src/components/post-featured-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/components/post-featured-image.tsx -------------------------------------------------------------------------------- /src/components/post-teaser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/components/post-teaser.tsx -------------------------------------------------------------------------------- /src/components/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/components/post.tsx -------------------------------------------------------------------------------- /src/fragments/menu-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/fragments/menu-fragment.ts -------------------------------------------------------------------------------- /src/fragments/post-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/fragments/post-fragment.ts -------------------------------------------------------------------------------- /src/fragments/settings-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/fragments/settings-fragment.ts -------------------------------------------------------------------------------- /src/hooks/use-wp-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/hooks/use-wp-menu.tsx -------------------------------------------------------------------------------- /src/hooks/use-wp-post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/hooks/use-wp-post.tsx -------------------------------------------------------------------------------- /src/hooks/use-wp-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/hooks/use-wp-settings.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/{WpPage.slug}.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/pages/{WpPage.slug}.tsx -------------------------------------------------------------------------------- /src/pages/{WpPost.slug}.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/pages/{WpPost.slug}.tsx -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /src/styles/twentytwentyone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/styles/twentytwentyone.css -------------------------------------------------------------------------------- /src/utils/apply-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/src/utils/apply-filters.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcn/gatsby-theme-twentytwentyone/HEAD/yarn.lock --------------------------------------------------------------------------------