├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── README.md ├── app └── Tags │ └── JsonRegions.php ├── composer.json ├── config ├── simple-commerce.php └── statamic │ ├── cp.php │ └── editions.php ├── content ├── assets │ └── assets.yaml ├── collections │ ├── .gitkeep │ ├── customers.yaml │ ├── orders.yaml │ ├── pages.yaml │ ├── pages │ │ ├── home.md │ │ └── products.md │ ├── products.yaml │ └── products │ │ ├── adyghe-cheese.md │ │ ├── assortment-of-crackers.md │ │ └── simple-commerce-stickers.md ├── navigation │ ├── .gitkeep │ └── main.yaml └── trees │ ├── .gitkeep │ ├── collections │ └── pages.yaml │ └── navigation │ └── main.yaml ├── logo-dark.svg ├── logo-default.svg ├── package.json ├── postcss.config.js ├── public ├── assets │ ├── .meta │ │ ├── aleksey-melkomukov-OxUaBR0ORb0-unsplash.jpeg.yaml │ │ ├── romina-bm-DnHnW-3I04I-unsplash.jpeg.yaml │ │ └── sc-laptop-sticker.png.yaml │ ├── aleksey-melkomukov-OxUaBR0ORb0-unsplash.jpeg │ ├── romina-bm-DnHnW-3I04I-unsplash.jpeg │ └── sc-laptop-sticker.png ├── build │ ├── assets │ │ ├── site.767ad049.css │ │ └── site.83d41072.js │ └── manifest.json └── visuals │ ├── paypal-checkout-button.png │ └── simple-commerce-logo.svg ├── resources ├── blueprints │ ├── .gitkeep │ ├── collections │ │ ├── customers │ │ │ └── customer.yaml │ │ ├── orders │ │ │ └── order.yaml │ │ ├── pages │ │ │ └── page.yaml │ │ └── products │ │ │ ├── product.yaml │ │ │ └── product_with_variants.yaml │ └── taxonomies │ │ └── product_categories │ │ └── product_category.yaml ├── css │ ├── cp.css │ ├── site.css │ └── tailwind.css ├── fieldsets │ ├── article.yaml │ ├── button.yaml │ ├── buttons.yaml │ ├── common.yaml │ ├── image.yaml │ ├── link_blocks.yaml │ └── page_builder.yaml ├── js │ ├── components │ │ └── fieldtypes │ │ │ └── ExampleFieldtype.vue │ ├── cp.js │ └── site.js ├── preferences.yaml └── views │ ├── .gitkeep │ ├── cart.antlers.html │ ├── checkout │ ├── _cart.antlers.html │ ├── _errors.antlers.html │ ├── complete.antlers.html │ ├── gateways │ │ ├── _dummy.antlers.html │ │ ├── _mollie.antlers.html │ │ ├── _paypal.antlers.html │ │ └── _stripe.antlers.html │ ├── information.antlers.html │ ├── offsite │ │ ├── mollie.antlers.html │ │ └── paypal.antlers.html │ ├── payment.antlers.html │ └── shipping.antlers.html │ ├── components │ ├── _button.antlers.html │ ├── _buttons.antlers.html │ ├── _figure.antlers.html │ ├── _logo.antlers.html │ ├── _notification.antlers.html │ ├── _pagination.antlers.html │ ├── _picture.antlers.html │ ├── _table.antlers.html │ ├── _text.antlers.html │ ├── _video.antlers.html │ └── forms │ │ ├── _errors_panel.antlers.html │ │ ├── _input_field.antlers.html │ │ ├── _select_field.antlers.html │ │ └── _textarea_field.antlers.html │ ├── default.antlers.html │ ├── errors │ └── 404.antlers.html │ ├── layout.antlers.html │ ├── layout │ ├── _footer.antlers.html │ └── _header.antlers.html │ ├── navigation │ ├── _main.antlers.html │ ├── _main_desktop.antlers.html │ ├── _main_mobile.antlers.html │ └── _skip_to_content.antlers.html │ ├── page_builder │ ├── _article.antlers.html │ └── _link_blocks.antlers.html │ ├── products │ ├── index.antlers.html │ └── show.antlers.html │ ├── snippets │ └── _button_attributes.antlers.html │ └── typography │ ├── _caption.antlers.html │ ├── _h1.antlers.html │ ├── _h2.antlers.html │ ├── _h3.antlers.html │ ├── _p.antlers.html │ ├── _prose.antlers.html │ └── _time.antlers.html ├── routes └── web.php ├── starter-kit.yaml ├── tailwind.config.js ├── tailwind.config.peak.js ├── tailwind.config.site.js ├── tailwind.config.typography.js └── vite.config.js /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app/Tags/JsonRegions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/app/Tags/JsonRegions.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/composer.json -------------------------------------------------------------------------------- /config/simple-commerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/config/simple-commerce.php -------------------------------------------------------------------------------- /config/statamic/cp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/config/statamic/cp.php -------------------------------------------------------------------------------- /config/statamic/editions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/config/statamic/editions.php -------------------------------------------------------------------------------- /content/assets/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/assets/assets.yaml -------------------------------------------------------------------------------- /content/collections/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/collections/customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/customers.yaml -------------------------------------------------------------------------------- /content/collections/orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/orders.yaml -------------------------------------------------------------------------------- /content/collections/pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/pages.yaml -------------------------------------------------------------------------------- /content/collections/pages/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/pages/home.md -------------------------------------------------------------------------------- /content/collections/pages/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/pages/products.md -------------------------------------------------------------------------------- /content/collections/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/products.yaml -------------------------------------------------------------------------------- /content/collections/products/adyghe-cheese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/products/adyghe-cheese.md -------------------------------------------------------------------------------- /content/collections/products/assortment-of-crackers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/products/assortment-of-crackers.md -------------------------------------------------------------------------------- /content/collections/products/simple-commerce-stickers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/collections/products/simple-commerce-stickers.md -------------------------------------------------------------------------------- /content/navigation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/navigation/main.yaml: -------------------------------------------------------------------------------- 1 | title: Main 2 | collections: 3 | - pages 4 | root: true 5 | -------------------------------------------------------------------------------- /content/trees/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/trees/collections/pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/trees/collections/pages.yaml -------------------------------------------------------------------------------- /content/trees/navigation/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/content/trees/navigation/main.yaml -------------------------------------------------------------------------------- /logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/logo-dark.svg -------------------------------------------------------------------------------- /logo-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/logo-default.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/.meta/aleksey-melkomukov-OxUaBR0ORb0-unsplash.jpeg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/assets/.meta/aleksey-melkomukov-OxUaBR0ORb0-unsplash.jpeg.yaml -------------------------------------------------------------------------------- /public/assets/.meta/romina-bm-DnHnW-3I04I-unsplash.jpeg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/assets/.meta/romina-bm-DnHnW-3I04I-unsplash.jpeg.yaml -------------------------------------------------------------------------------- /public/assets/.meta/sc-laptop-sticker.png.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/assets/.meta/sc-laptop-sticker.png.yaml -------------------------------------------------------------------------------- /public/assets/aleksey-melkomukov-OxUaBR0ORb0-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/assets/aleksey-melkomukov-OxUaBR0ORb0-unsplash.jpeg -------------------------------------------------------------------------------- /public/assets/romina-bm-DnHnW-3I04I-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/assets/romina-bm-DnHnW-3I04I-unsplash.jpeg -------------------------------------------------------------------------------- /public/assets/sc-laptop-sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/assets/sc-laptop-sticker.png -------------------------------------------------------------------------------- /public/build/assets/site.767ad049.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/build/assets/site.767ad049.css -------------------------------------------------------------------------------- /public/build/assets/site.83d41072.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/build/assets/site.83d41072.js -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/visuals/paypal-checkout-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/visuals/paypal-checkout-button.png -------------------------------------------------------------------------------- /public/visuals/simple-commerce-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/public/visuals/simple-commerce-logo.svg -------------------------------------------------------------------------------- /resources/blueprints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/blueprints/collections/customers/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/blueprints/collections/customers/customer.yaml -------------------------------------------------------------------------------- /resources/blueprints/collections/orders/order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/blueprints/collections/orders/order.yaml -------------------------------------------------------------------------------- /resources/blueprints/collections/pages/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/blueprints/collections/pages/page.yaml -------------------------------------------------------------------------------- /resources/blueprints/collections/products/product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/blueprints/collections/products/product.yaml -------------------------------------------------------------------------------- /resources/blueprints/collections/products/product_with_variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/blueprints/collections/products/product_with_variants.yaml -------------------------------------------------------------------------------- /resources/blueprints/taxonomies/product_categories/product_category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/blueprints/taxonomies/product_categories/product_category.yaml -------------------------------------------------------------------------------- /resources/css/cp.css: -------------------------------------------------------------------------------- 1 | /* This is all you. */ 2 | -------------------------------------------------------------------------------- /resources/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/css/site.css -------------------------------------------------------------------------------- /resources/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/css/tailwind.css -------------------------------------------------------------------------------- /resources/fieldsets/article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/article.yaml -------------------------------------------------------------------------------- /resources/fieldsets/button.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/button.yaml -------------------------------------------------------------------------------- /resources/fieldsets/buttons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/buttons.yaml -------------------------------------------------------------------------------- /resources/fieldsets/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/common.yaml -------------------------------------------------------------------------------- /resources/fieldsets/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/image.yaml -------------------------------------------------------------------------------- /resources/fieldsets/link_blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/link_blocks.yaml -------------------------------------------------------------------------------- /resources/fieldsets/page_builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/fieldsets/page_builder.yaml -------------------------------------------------------------------------------- /resources/js/components/fieldtypes/ExampleFieldtype.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/js/components/fieldtypes/ExampleFieldtype.vue -------------------------------------------------------------------------------- /resources/js/cp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/js/cp.js -------------------------------------------------------------------------------- /resources/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/js/site.js -------------------------------------------------------------------------------- /resources/preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/preferences.yaml -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/cart.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/cart.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/_cart.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/_cart.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/_errors.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/_errors.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/complete.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/complete.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/gateways/_dummy.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/gateways/_dummy.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/gateways/_mollie.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/gateways/_mollie.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/gateways/_paypal.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/gateways/_paypal.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/gateways/_stripe.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/gateways/_stripe.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/information.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/information.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/offsite/mollie.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/offsite/mollie.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/offsite/paypal.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/offsite/paypal.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/payment.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/payment.antlers.html -------------------------------------------------------------------------------- /resources/views/checkout/shipping.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/checkout/shipping.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_button.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_button.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_buttons.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_buttons.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_figure.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_figure.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_logo.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_logo.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_notification.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_notification.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_pagination.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_pagination.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_picture.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_picture.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_table.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_table.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_text.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_text.antlers.html -------------------------------------------------------------------------------- /resources/views/components/_video.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/_video.antlers.html -------------------------------------------------------------------------------- /resources/views/components/forms/_errors_panel.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/forms/_errors_panel.antlers.html -------------------------------------------------------------------------------- /resources/views/components/forms/_input_field.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/forms/_input_field.antlers.html -------------------------------------------------------------------------------- /resources/views/components/forms/_select_field.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/forms/_select_field.antlers.html -------------------------------------------------------------------------------- /resources/views/components/forms/_textarea_field.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/components/forms/_textarea_field.antlers.html -------------------------------------------------------------------------------- /resources/views/default.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/default.antlers.html -------------------------------------------------------------------------------- /resources/views/errors/404.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/errors/404.antlers.html -------------------------------------------------------------------------------- /resources/views/layout.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/layout.antlers.html -------------------------------------------------------------------------------- /resources/views/layout/_footer.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/layout/_footer.antlers.html -------------------------------------------------------------------------------- /resources/views/layout/_header.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/layout/_header.antlers.html -------------------------------------------------------------------------------- /resources/views/navigation/_main.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/navigation/_main.antlers.html -------------------------------------------------------------------------------- /resources/views/navigation/_main_desktop.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/navigation/_main_desktop.antlers.html -------------------------------------------------------------------------------- /resources/views/navigation/_main_mobile.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/navigation/_main_mobile.antlers.html -------------------------------------------------------------------------------- /resources/views/navigation/_skip_to_content.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/navigation/_skip_to_content.antlers.html -------------------------------------------------------------------------------- /resources/views/page_builder/_article.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/page_builder/_article.antlers.html -------------------------------------------------------------------------------- /resources/views/page_builder/_link_blocks.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/page_builder/_link_blocks.antlers.html -------------------------------------------------------------------------------- /resources/views/products/index.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/products/index.antlers.html -------------------------------------------------------------------------------- /resources/views/products/show.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/products/show.antlers.html -------------------------------------------------------------------------------- /resources/views/snippets/_button_attributes.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/snippets/_button_attributes.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_caption.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_caption.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_h1.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_h1.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_h2.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_h2.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_h3.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_h3.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_p.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_p.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_prose.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_prose.antlers.html -------------------------------------------------------------------------------- /resources/views/typography/_time.antlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/resources/views/typography/_time.antlers.html -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/routes/web.php -------------------------------------------------------------------------------- /starter-kit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/starter-kit.yaml -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.config.peak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/tailwind.config.peak.js -------------------------------------------------------------------------------- /tailwind.config.site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/tailwind.config.site.js -------------------------------------------------------------------------------- /tailwind.config.typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/tailwind.config.typography.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanmcclean/sc-starter-kit/HEAD/vite.config.js --------------------------------------------------------------------------------