├── functions.php ├── template-parts ├── blocks │ ├── ctaButton │ │ ├── block.json │ │ └── ctaButton.php │ ├── formspreeForm │ │ ├── block.json │ │ └── formspreeForm.php │ ├── propertyFeatures │ │ ├── block.json │ │ └── propertyFeatures.php │ ├── propertySearch │ │ ├── block.json │ │ └── propertySearch.php │ └── tickItem │ │ ├── block.json │ │ └── tickItem.php ├── fontawesome.zip └── fontawesome │ └── all.min.js └── theme.json /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/functions.php -------------------------------------------------------------------------------- /template-parts/blocks/ctaButton/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/ctaButton/block.json -------------------------------------------------------------------------------- /template-parts/blocks/ctaButton/ctaButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/ctaButton/ctaButton.php -------------------------------------------------------------------------------- /template-parts/blocks/formspreeForm/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/formspreeForm/block.json -------------------------------------------------------------------------------- /template-parts/blocks/formspreeForm/formspreeForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/formspreeForm/formspreeForm.php -------------------------------------------------------------------------------- /template-parts/blocks/propertyFeatures/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/propertyFeatures/block.json -------------------------------------------------------------------------------- /template-parts/blocks/propertyFeatures/propertyFeatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/propertyFeatures/propertyFeatures.php -------------------------------------------------------------------------------- /template-parts/blocks/propertySearch/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/propertySearch/block.json -------------------------------------------------------------------------------- /template-parts/blocks/propertySearch/propertySearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/propertySearch/propertySearch.php -------------------------------------------------------------------------------- /template-parts/blocks/tickItem/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/tickItem/block.json -------------------------------------------------------------------------------- /template-parts/blocks/tickItem/tickItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/blocks/tickItem/tickItem.php -------------------------------------------------------------------------------- /template-parts/fontawesome.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/fontawesome.zip -------------------------------------------------------------------------------- /template-parts/fontawesome/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/template-parts/fontawesome/all.min.js -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphill/nextjs-wp-files/HEAD/theme.json --------------------------------------------------------------------------------