Browse Source

Sunderland: add theme (#7457)

* Initial zip.

* Update and escape pattern.

* Update license info and version, remove unused.

* Compress image.
Jeff Ong 1 year ago
parent
commit
5554cbe9c4

BIN
sunderland/assets/fonts/helvetica_italic_400.ttf


BIN
sunderland/assets/fonts/helvetica_italic_700.ttf


BIN
sunderland/assets/fonts/helvetica_normal_400.ttf


BIN
sunderland/assets/fonts/helvetica_normal_700.ttf


BIN
sunderland/assets/images/summertime_image.webp


+ 60 - 0
sunderland/functions.php

@@ -0,0 +1,60 @@
+<?php
+/**
+ * Sunderland functions and definitions
+ *
+ * @link https://developer.wordpress.org/themes/basics/theme-functions/
+ *
+ * @package Sunderland
+ * @since Sunderland 1.0
+ */
+
+
+if ( ! function_exists( 'sunderland_support' ) ) :
+
+	/**
+	 * Sets up theme defaults and registers support for various WordPress features.
+	 *
+	 * @since Sunderland 1.0
+	 *
+	 * @return void
+	 */
+	function sunderland_support() {
+
+		// Enqueue editor styles.
+		add_editor_style( 'style.css' );
+
+		// Make theme available for translation.
+		load_theme_textdomain( 'sunderland' );
+	}
+
+endif;
+
+add_action( 'after_setup_theme', 'sunderland_support' );
+
+if ( ! function_exists( 'sunderland_styles' ) ) :
+
+	/**
+	 * Enqueue styles.
+	 *
+	 * @since Sunderland 1.0
+	 *
+	 * @return void
+	 */
+	function sunderland_styles() {
+
+		// Register theme stylesheet.
+		wp_register_style(
+			'sunderland-style',
+			get_stylesheet_directory_uri() . '/style.css',
+			array(),
+			wp_get_theme()->get( 'Version' )
+		);
+
+		// Enqueue theme stylesheet.
+		wp_enqueue_style( 'sunderland-style' );
+
+	}
+
+endif;
+
+add_action( 'wp_enqueue_scripts', 'sunderland_styles' );

+ 11 - 0
sunderland/parts/footer.html

@@ -0,0 +1,11 @@
+<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
+<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"right":"5vw","left":"5vw"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-right:5vw;padding-left:5vw"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"0.8rem","textTransform":"uppercase"}}} -->
+<p class="has-text-align-left" style="font-size:0.8rem;text-transform:uppercase">Designed with <a rel="nofollow" href="https://wordpress.org">WordPress</a></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 11 - 0
sunderland/parts/header.html

@@ -0,0 +1,11 @@
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"3vh","right":"5vw","bottom":"3vh","left":"5vw"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:3vh;padding-right:5vw;padding-bottom:3vh;padding-left:5vw"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0","top":"0","right":"0","left":"0"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
+<div class="wp-block-group alignfull" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"layout":{"type":"flex"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"2rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group"><!-- wp:site-title {"fontSize":"large"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:navigation {"ref":8,"overlayBackgroundColor":"base","overlayTextColor":"contrast","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"}}}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 5 - 0
sunderland/parts/post-meta.html

@@ -0,0 +1,5 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","justifyContent":"left"}} -->
+<div class="wp-block-group"><!-- wp:post-date {"textAlign":"left","isLink":true,"style":{"typography":{"fontSize":"0.8rem","textTransform":"uppercase"}}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 16 - 0
sunderland/patterns/404.php

@@ -0,0 +1,16 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: sunderland/404
+ * Inserter: no
+ */
+
+?>
+
+<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"x-large"} -->
+<h1 class="has-text-align-center has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can&rsquo;t be found.', 'sunderland' ); ?></h1>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph -->
+<p><?php echo  esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'sunderland' ); ?></p>
+<!-- /wp:paragraph -->

+ 33 - 0
sunderland/patterns/footer.php

@@ -0,0 +1,33 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: sunderland/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
+<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group">
+	<!-- wp:group {"style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} -->
+	<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
+		<!-- wp:paragraph {"align":"center"} -->
+		<p class="has-text-align-center">
+            <?php
+                /* Translators: WordPress link. */
+                $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'sunderland' ) ) . '" rel="nofollow">WordPress</a>';
+                echo sprintf(
+                    esc_html__( 'Designed with %1$s', 'sunderland' ),
+                    $wordpress_link
+                );
+            ?>
+        </p>
+		<!-- /wp:paragraph -->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 49 - 0
sunderland/patterns/home.php

@@ -0,0 +1,49 @@
+<?php
+/**
+ * Title: home
+ * Slug: sunderland/home
+ * Categories: hidden
+ * Inserter: no
+ */
+?>
+<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/summertime_image.webp","dimRatio":10,"overlayColor":"base","minHeight":100,"minHeightUnit":"vh","style":{"spacing":{"padding":{"right":"5vw","left":"5vw"}}},"textColor":"contrast","layout":{"type":"constrained"}} -->
+<div class="wp-block-cover has-contrast-color has-text-color" style="padding-right:5vw;padding-left:5vw;min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-base-background-color has-background-dim-10 has-background-dim"></span><img class="wp-block-cover__image-background" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/summertime_image.webp" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"right":"0vw","left":"0vw"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh;padding-right:0vw;padding-left:0vw"><!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"0px","selfStretch":"fixed"}}} -->
+<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"139px","selfStretch":"fixed"}}} -->
+<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0.2em"}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group alignwide"><!-- wp:site-title /-->
+
+<!-- wp:site-tagline /--></div>
+<!-- /wp:group -->
+
+<!-- wp:spacer {"height":"19px","style":{"layout":{"flexSize":"19px","selfStretch":"fixed"}}} -->
+<div style="height:19px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
+<div class="wp-block-group alignwide"><!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase","fontSize":"0.8rem"}}} -->
+<p style="font-size:0.8rem;text-transform:uppercase"><strong><?php echo esc_html__( 'in stores June 26th', 'sunderland' ); ?><br></strong><br><?php echo esc_html__( 'Release Party and exclusive pre-show cocktail reception', 'sunderland' ); ?><br><?php echo esc_html__( 'Eden Garden Amphitheater on June 25th', 'sunderland' ); ?><br><a href="/"><?php echo esc_html__( 'more info here', 'sunderland' ); ?></a><br></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:social-links {"iconColor":"contrast","iconColorValue":"#ffd17b","size":"has-small-icon-size","style":{"spacing":{"blockGap":{"top":"1rem","left":"1rem"}}},"className":"is-style-logos-only"} -->
+<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"","service":"soundcloud"} /-->
+
+<!-- wp:social-link {"url":"/","service":"bandcamp"} /-->
+
+<!-- wp:social-link {"url":"/","service":"spotify"} /-->
+
+<!-- wp:social-link {"url":"/","service":"instagram"} /--></ul>
+<!-- /wp:social-links --></div>
+<!-- /wp:group -->
+
+<!-- wp:spacer {"height":"60px","style":{"layout":{"flexSize":"60px","selfStretch":"fixed"}}} -->
+<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group --></div></div>
+<!-- /wp:cover -->

+ 36 - 0
sunderland/readme.txt

@@ -0,0 +1,36 @@
+=== Sunderland ===
+Contributors: Automattic
+Requires at least: 6.0
+Tested up to: 6.2
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Sunderland is a simple WordPress event theme designed for announcing upcoming events in a visually captivating way. Sunderland's character lies in its immersive landing page, with an easily switchable full width background image. Sunderland is the ideal choice for bands, musicians, artists or event organizers who want a sleek and eye-catching website to inform and engage their audience.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release 
+
+== Copyright ==
+
+Sunderland WordPress Theme, (C) 2022 Automattic
+Sunderland is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+Helvetica Font
+© 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. 
+  
+-- End of Helvetica Font credits --

BIN
sunderland/screenshot.png


+ 48 - 0
sunderland/style.css

@@ -0,0 +1,48 @@
+/*
+Theme Name: Sunderland
+Theme URI: https://github.com/Automattic/themes/tree/trunk/sunderland
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Sunderland is a simple theme that supports full-site editing. It comes with a set of minimal templates and design settings that can be manipulated through Global Styles. Use it to build something beautiful.
+Requires at least: 6.0
+Tested up to: 6.2
+Requires PHP: 5.7
+Version: 1.0.0 
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Text Domain: sunderland
+Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, auto-loading-homepage
+
+Sunderland WordPress Theme, (C) 2022 Automattic, Inc.
+Sunderland is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+*/
+
+/*
+ * Control the hover stylings of outline block style.
+ * Unnecessary once block styles are configurable via theme.json
+ * https://github.com/WordPress/gutenberg/issues/42794
+ */
+.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
+	background-color: var(--wp--preset--color--secondary);
+	color: var(--wp--preset--color--base);
+	border-color: var(--wp--preset--color--secondary);
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: .0625em !important;
+	text-underline-offset: .15em;
+}

+ 1 - 0
sunderland/templates/home.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"sunderland/home"} /-->

+ 27 - 0
sunderland/templates/index.html

@@ -0,0 +1,27 @@
+<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:template-part {"slug":"header","tagName":"header"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"10vh","bottom":"10vh","left":"5vw","right":"5vw"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="padding-top:10vh;padding-right:5vw;padding-bottom:10vh;padding-left:5vw"><!-- wp:query {"queryId":1,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
+<main class="wp-block-query"><!-- wp:post-template -->
+<!-- wp:group -->
+<div class="wp-block-group"><!-- wp:post-title {"isLink":true} /-->
+
+<!-- wp:template-part {"slug":"post-meta"} /-->
+
+<!-- wp:post-content /--></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"5vh","bottom":"5vh"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:5vh;margin-bottom:5vh"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 15 - 0
sunderland/templates/page.html

@@ -0,0 +1,15 @@
+<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:template-part {"slug":"header","tagName":"header"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"10vh","bottom":"10vh","right":"5vw","left":"5vw"},"blockGap":"4rem"}}} -->
+<main class="wp-block-group" style="padding-top:10vh;padding-right:5vw;padding-bottom:10vh;padding-left:5vw"><!-- wp:post-title {"textAlign":"center"} /-->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-featured-image {"aspectRatio":"3/2","width":"","align":"center"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-content {"lock":{"move":false,"remove":false},"style":{"typography":{"fontSize":"0.9rem","textTransform":"none","lineHeight":"1.4"}},"layout":{"type":"constrained","contentSize":"560px"}} /--></main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 19 - 0
sunderland/templates/single.html

@@ -0,0 +1,19 @@
+<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:template-part {"slug":"header","tagName":"header"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"style":{"spacing":{"padding":{"top":"10vh","bottom":"10vh","right":"5vw","left":"5vw"},"blockGap":"5rem"}}} -->
+<main class="wp-block-group" style="padding-top:10vh;padding-right:5vw;padding-bottom:10vh;padding-left:5vw"><!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"textAlign":"center"} /-->
+
+<!-- wp:template-part {"slug":"post-meta","align":"center"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-featured-image {"aspectRatio":"3/2","width":"","align":"center"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"constrained","contentSize":"560px"}} /--></main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 1280 - 0
sunderland/theme.json

@@ -0,0 +1,1280 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"blocks": {
+			"core/button": {
+				"appearanceTools": true,
+				"color": {
+					"background": true,
+					"custom": true,
+					"customDuotone": true,
+					"customGradient": true,
+					"defaultDuotone": true,
+					"defaultGradients": true,
+					"defaultPalette": true,
+					"duotone": [],
+					"gradients": [],
+					"palette": [
+						{
+							"color": "#000000",
+							"name": "Base",
+							"slug": "base"
+						},
+						{
+							"color": "#ffd17b",
+							"name": "Contrast",
+							"slug": "contrast"
+						},
+						{
+							"color": "#ffd17b",
+							"name": "Primary",
+							"slug": "primary"
+						},
+						{
+							"color": "#ffd17b",
+							"name": "Secondary",
+							"slug": "secondary"
+						},
+						{
+							"color": "#161616",
+							"name": "Tertiary",
+							"slug": "tertiary"
+						}
+					],
+					"text": true
+				},
+				"layout": {
+					"contentSize": false,
+					"definitions": {
+						"constrained": {
+							"baseStyles": [
+								{
+									"rules": {
+										"float": "left",
+										"margin-inline-end": "2em",
+										"margin-inline-start": "0"
+									},
+									"selector": " > .alignleft"
+								},
+								{
+									"rules": {
+										"float": "right",
+										"margin-inline-end": "0",
+										"margin-inline-start": "2em"
+									},
+									"selector": " > .alignright"
+								},
+								{
+									"rules": {
+										"margin-left": "auto !important",
+										"margin-right": "auto !important"
+									},
+									"selector": " > .aligncenter"
+								},
+								{
+									"rules": {
+										"margin-left": "auto !important",
+										"margin-right": "auto !important",
+										"max-width": "var(--wp--style--global--content-size)"
+									},
+									"selector": " > :where(:not(.alignleft):not(.alignright):not(.alignfull))"
+								},
+								{
+									"rules": {
+										"max-width": "var(--wp--style--global--wide-size)"
+									},
+									"selector": " > .alignwide"
+								}
+							],
+							"className": "is-layout-constrained",
+							"name": "constrained",
+							"slug": "constrained",
+							"spacingStyles": [
+								{
+									"rules": {
+										"margin-block-start": "0"
+									},
+									"selector": " > :first-child:first-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0"
+									},
+									"selector": " > :last-child:last-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0",
+										"margin-block-start": null
+									},
+									"selector": " > *"
+								}
+							]
+						},
+						"default": {
+							"baseStyles": [
+								{
+									"rules": {
+										"float": "left",
+										"margin-inline-end": "2em",
+										"margin-inline-start": "0"
+									},
+									"selector": " > .alignleft"
+								},
+								{
+									"rules": {
+										"float": "right",
+										"margin-inline-end": "0",
+										"margin-inline-start": "2em"
+									},
+									"selector": " > .alignright"
+								},
+								{
+									"rules": {
+										"margin-left": "auto !important",
+										"margin-right": "auto !important"
+									},
+									"selector": " > .aligncenter"
+								}
+							],
+							"className": "is-layout-flow",
+							"name": "default",
+							"slug": "flow",
+							"spacingStyles": [
+								{
+									"rules": {
+										"margin-block-start": "0"
+									},
+									"selector": " > :first-child:first-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0"
+									},
+									"selector": " > :last-child:last-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0",
+										"margin-block-start": null
+									},
+									"selector": " > *"
+								}
+							]
+						},
+						"flex": {
+							"baseStyles": [
+								{
+									"rules": {
+										"align-items": "center",
+										"flex-wrap": "wrap"
+									},
+									"selector": ""
+								},
+								{
+									"rules": {
+										"margin": "0"
+									},
+									"selector": " > *"
+								}
+							],
+							"className": "is-layout-flex",
+							"displayMode": "flex",
+							"name": "flex",
+							"slug": "flex",
+							"spacingStyles": [
+								{
+									"rules": {
+										"gap": null
+									},
+									"selector": ""
+								}
+							]
+						},
+						"grid": {
+							"baseStyles": [
+								{
+									"rules": {
+										"margin": "0"
+									},
+									"selector": " > *"
+								}
+							],
+							"className": "is-layout-grid",
+							"displayMode": "grid",
+							"name": "grid",
+							"slug": "grid",
+							"spacingStyles": [
+								{
+									"rules": {
+										"gap": null
+									},
+									"selector": ""
+								}
+							]
+						}
+					},
+					"wideSize": false
+				},
+				"shadow": {
+					"defaultPresets": true,
+					"presets": []
+				},
+				"spacing": {
+					"customSpacingSize": true,
+					"spacingScale": {
+						"increment": 1.5,
+						"mediumStep": 1.5,
+						"operator": "*",
+						"steps": 7,
+						"unit": "rem"
+					},
+					"spacingSizes": [],
+					"units": [
+						"%",
+						"px",
+						"em",
+						"rem",
+						"vh",
+						"vw"
+					]
+				},
+				"typography": {
+					"customFontSize": true,
+					"dropCap": true,
+					"fluid": true,
+					"fontFamilies": [
+						{
+							"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
+							"name": "System Font",
+							"slug": "system-font"
+						},
+						{
+							"fontFace": [
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "normal",
+									"fontWeight": "700",
+									"src": [
+										"file:./assets/fonts/helvetica_normal_700.ttf"
+									]
+								},
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "italic",
+									"fontWeight": "700",
+									"src": [
+										"file:./assets/fonts/helvetica_italic_700.ttf"
+									]
+								},
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "normal",
+									"fontWeight": "400",
+									"src": [
+										"file:./assets/fonts/helvetica_normal_400.ttf"
+									]
+								},
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "italic",
+									"fontWeight": "400",
+									"src": [
+										"file:./assets/fonts/helvetica_italic_400.ttf"
+									]
+								}
+							],
+							"fontFamily": "Helvetica",
+							"slug": "helvetica"
+						}
+					],
+					"fontSizes": [
+						{
+							"fluid": {
+								"max": "1.0625rem",
+								"min": "0.825rem"
+							},
+							"name": "Small",
+							"size": "1rem",
+							"slug": "small"
+						},
+						{
+							"fluid": {
+								"max": "1.25rem",
+								"min": "1rem"
+							},
+							"name": "Medium",
+							"size": "1.125rem",
+							"slug": "medium"
+						},
+						{
+							"fluid": {
+								"max": "2rem",
+								"min": "1.75rem"
+							},
+							"name": "Large",
+							"size": "1.75rem",
+							"slug": "large"
+						},
+						{
+							"fluid": {
+								"max": "3rem",
+								"min": "2.5rem"
+							},
+							"name": "Extra Large",
+							"size": "3rem",
+							"slug": "x-large"
+						}
+					],
+					"fontStyle": true,
+					"fontWeight": true,
+					"letterSpacing": true,
+					"textDecoration": true,
+					"textTransform": true
+				},
+				"useRootPaddingAwareAlignments": true
+			},
+			"core/navigation": {
+				"appearanceTools": true,
+				"color": {
+					"background": true,
+					"custom": true,
+					"customDuotone": true,
+					"customGradient": true,
+					"defaultDuotone": true,
+					"defaultGradients": true,
+					"defaultPalette": true,
+					"duotone": [],
+					"gradients": [],
+					"palette": [
+						{
+							"color": "#000000",
+							"name": "Base",
+							"slug": "base"
+						},
+						{
+							"color": "#ffd17b",
+							"name": "Contrast",
+							"slug": "contrast"
+						},
+						{
+							"color": "#ffd17b",
+							"name": "Primary",
+							"slug": "primary"
+						},
+						{
+							"color": "#ffd17b",
+							"name": "Secondary",
+							"slug": "secondary"
+						},
+						{
+							"color": "#161616",
+							"name": "Tertiary",
+							"slug": "tertiary"
+						}
+					],
+					"text": true
+				},
+				"layout": {
+					"contentSize": false,
+					"definitions": {
+						"constrained": {
+							"baseStyles": [
+								{
+									"rules": {
+										"float": "left",
+										"margin-inline-end": "2em",
+										"margin-inline-start": "0"
+									},
+									"selector": " > .alignleft"
+								},
+								{
+									"rules": {
+										"float": "right",
+										"margin-inline-end": "0",
+										"margin-inline-start": "2em"
+									},
+									"selector": " > .alignright"
+								},
+								{
+									"rules": {
+										"margin-left": "auto !important",
+										"margin-right": "auto !important"
+									},
+									"selector": " > .aligncenter"
+								},
+								{
+									"rules": {
+										"margin-left": "auto !important",
+										"margin-right": "auto !important",
+										"max-width": "var(--wp--style--global--content-size)"
+									},
+									"selector": " > :where(:not(.alignleft):not(.alignright):not(.alignfull))"
+								},
+								{
+									"rules": {
+										"max-width": "var(--wp--style--global--wide-size)"
+									},
+									"selector": " > .alignwide"
+								}
+							],
+							"className": "is-layout-constrained",
+							"name": "constrained",
+							"slug": "constrained",
+							"spacingStyles": [
+								{
+									"rules": {
+										"margin-block-start": "0"
+									},
+									"selector": " > :first-child:first-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0"
+									},
+									"selector": " > :last-child:last-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0",
+										"margin-block-start": null
+									},
+									"selector": " > *"
+								}
+							]
+						},
+						"default": {
+							"baseStyles": [
+								{
+									"rules": {
+										"float": "left",
+										"margin-inline-end": "2em",
+										"margin-inline-start": "0"
+									},
+									"selector": " > .alignleft"
+								},
+								{
+									"rules": {
+										"float": "right",
+										"margin-inline-end": "0",
+										"margin-inline-start": "2em"
+									},
+									"selector": " > .alignright"
+								},
+								{
+									"rules": {
+										"margin-left": "auto !important",
+										"margin-right": "auto !important"
+									},
+									"selector": " > .aligncenter"
+								}
+							],
+							"className": "is-layout-flow",
+							"name": "default",
+							"slug": "flow",
+							"spacingStyles": [
+								{
+									"rules": {
+										"margin-block-start": "0"
+									},
+									"selector": " > :first-child:first-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0"
+									},
+									"selector": " > :last-child:last-child"
+								},
+								{
+									"rules": {
+										"margin-block-end": "0",
+										"margin-block-start": null
+									},
+									"selector": " > *"
+								}
+							]
+						},
+						"flex": {
+							"baseStyles": [
+								{
+									"rules": {
+										"align-items": "center",
+										"flex-wrap": "wrap"
+									},
+									"selector": ""
+								},
+								{
+									"rules": {
+										"margin": "0"
+									},
+									"selector": " > *"
+								}
+							],
+							"className": "is-layout-flex",
+							"displayMode": "flex",
+							"name": "flex",
+							"slug": "flex",
+							"spacingStyles": [
+								{
+									"rules": {
+										"gap": null
+									},
+									"selector": ""
+								}
+							]
+						},
+						"grid": {
+							"baseStyles": [
+								{
+									"rules": {
+										"margin": "0"
+									},
+									"selector": " > *"
+								}
+							],
+							"className": "is-layout-grid",
+							"displayMode": "grid",
+							"name": "grid",
+							"slug": "grid",
+							"spacingStyles": [
+								{
+									"rules": {
+										"gap": null
+									},
+									"selector": ""
+								}
+							]
+						}
+					},
+					"wideSize": false
+				},
+				"shadow": {
+					"defaultPresets": true,
+					"presets": []
+				},
+				"spacing": {
+					"customSpacingSize": true,
+					"spacingScale": {
+						"increment": 1.5,
+						"mediumStep": 1.5,
+						"operator": "*",
+						"steps": 7,
+						"unit": "rem"
+					},
+					"spacingSizes": [],
+					"units": [
+						"%",
+						"px",
+						"em",
+						"rem",
+						"vh",
+						"vw"
+					]
+				},
+				"typography": {
+					"customFontSize": true,
+					"dropCap": true,
+					"fluid": true,
+					"fontFamilies": [
+						{
+							"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
+							"name": "System Font",
+							"slug": "system-font"
+						},
+						{
+							"fontFace": [
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "normal",
+									"fontWeight": "700",
+									"src": [
+										"file:./assets/fonts/helvetica_normal_700.ttf"
+									]
+								},
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "italic",
+									"fontWeight": "700",
+									"src": [
+										"file:./assets/fonts/helvetica_italic_700.ttf"
+									]
+								},
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "normal",
+									"fontWeight": "400",
+									"src": [
+										"file:./assets/fonts/helvetica_normal_400.ttf"
+									]
+								},
+								{
+									"fontFamily": "Helvetica",
+									"fontStyle": "italic",
+									"fontWeight": "400",
+									"src": [
+										"file:./assets/fonts/helvetica_italic_400.ttf"
+									]
+								}
+							],
+							"fontFamily": "Helvetica",
+							"slug": "helvetica"
+						}
+					],
+					"fontSizes": [
+						{
+							"fluid": {
+								"max": "1.0625rem",
+								"min": "0.825rem"
+							},
+							"name": "Small",
+							"size": "1rem",
+							"slug": "small"
+						},
+						{
+							"fluid": {
+								"max": "1.25rem",
+								"min": "1rem"
+							},
+							"name": "Medium",
+							"size": "1.125rem",
+							"slug": "medium"
+						},
+						{
+							"fluid": {
+								"max": "2rem",
+								"min": "1.75rem"
+							},
+							"name": "Large",
+							"size": "1.75rem",
+							"slug": "large"
+						},
+						{
+							"fluid": {
+								"max": "3rem",
+								"min": "2.5rem"
+							},
+							"name": "Extra Large",
+							"size": "3rem",
+							"slug": "x-large"
+						}
+					],
+					"fontStyle": true,
+					"fontWeight": true,
+					"letterSpacing": true,
+					"textDecoration": true,
+					"textTransform": true
+				},
+				"useRootPaddingAwareAlignments": true
+			}
+		},
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": true,
+			"defaultGradients": true,
+			"defaultPalette": true,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#000000",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#ffd17b",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#ffd17b",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#ffd17b",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#161616",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "800px",
+			"wideSize": "1200px"
+		},
+		"shadow": {
+			"defaultPresets": true,
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"increment": 1.5,
+				"mediumStep": 1.5,
+				"operator": "*",
+				"steps": 7,
+				"unit": "rem"
+			},
+			"spacingSizes": [],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"dropCap": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
+					"name": "System Font",
+					"slug": "system-font"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Helvetica",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/helvetica_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Helvetica",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/helvetica_italic_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Helvetica",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/helvetica_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Helvetica",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/helvetica_italic_400.ttf"
+							]
+						}
+					],
+					"fontFamily": "Helvetica",
+					"slug": "helvetica"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": {
+						"max": "1.0625rem",
+						"min": "0.825rem"
+					},
+					"name": "Small",
+					"size": "1rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1.25rem",
+						"min": "1rem"
+					},
+					"name": "Medium",
+					"size": "1.125rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "2rem",
+						"min": "1.75rem"
+					},
+					"name": "Large",
+					"size": "1.75rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "3rem",
+						"min": "2.5rem"
+					},
+					"name": "Extra Large",
+					"size": "3rem",
+					"slug": "x-large"
+				}
+			],
+			"fontStyle": true,
+			"fontWeight": true,
+			"letterSpacing": true,
+			"textDecoration": true,
+			"textTransform": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"border": {
+					"bottom": {
+						"color": "#ffd17b",
+						"style": "solid",
+						"width": "1px"
+					},
+					"color": null,
+					"left": {
+						"color": "#ffd17b",
+						"style": "solid",
+						"width": "1px"
+					},
+					"radius": "0px",
+					"right": {
+						"color": "#ffd17b",
+						"style": "solid",
+						"width": "1px"
+					},
+					"style": null,
+					"top": {
+						"color": "#ffd17b",
+						"style": "solid",
+						"width": "1px"
+					},
+					"width": null
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "10px",
+						"left": "16px",
+						"right": "16px",
+						"top": "10px"
+					}
+				},
+				"typography": {
+					"fontSize": "0.8rem",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"radius": "0.25rem",
+					"style": "solid",
+					"width": "2px"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontFamily": "monospace"
+				}
+			},
+			"core/comment-author-name": {
+				"typography": {
+					"fontSize": "0.8rem",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/comment-date": {
+				"typography": {
+					"fontSize": "0.8rem",
+					"fontStyle": "normal",
+					"fontWeight": "700",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/comment-edit-link": {
+				"typography": {
+					"fontSize": "0.8rem",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/comment-reply-link": {
+				"typography": {
+					"fontSize": "0.8rem",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/heading": {
+				"typography": {
+					"textTransform": "uppercase"
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--70)"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"blockGap": "1rem"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"fontStyle": "normal",
+					"fontWeight": "700",
+					"lineHeight": "1.2",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/paragraph": {
+				"typography": {
+					"textTransform": "none"
+				}
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-comments-form": {
+				"typography": {
+					"fontSize": "1rem",
+					"textTransform": "none"
+				}
+			},
+			"core/post-content": {
+				"typography": {
+					"textTransform": "none"
+				}
+			},
+			"core/post-date": {
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-terms": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"margin": {
+						"bottom": "0"
+					}
+				},
+				"typography": {
+					"textTransform": "uppercase"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"bottom": {
+						"style": "none",
+						"width": "0px"
+					},
+					"color": "var(--wp--preset--color--contrast)",
+					"left": {
+						"style": "none",
+						"width": "0px"
+					},
+					"right": {
+						"style": "none",
+						"width": "0px"
+					},
+					"style": "solid",
+					"top": {
+						"style": "none",
+						"width": "0px"
+					},
+					"width": "1px 0"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--contrast)",
+					"text": "var(--wp--preset--color--base)"
+				},
+				"elements": {
+					"link": {
+						"color": {
+							"text": "var(--wp--preset--color--base)"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"fontStyle": "normal",
+					"fontWeight": "700",
+					"letterSpacing": "0px",
+					"lineHeight": "1.3",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "normal"
+				}
+			},
+			"core/search": {
+				"border": {
+					"radius": "0px"
+				},
+				"typography": {
+					"fontSize": "0.8rem",
+					"lineHeight": "1.6",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"fontStyle": "normal",
+					"fontWeight": "700",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/site-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"fontWeight": "700",
+					"textTransform": "uppercase"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--base)",
+			"text": "var(--wp--preset--color--contrast)"
+		},
+		"css": "a:any-link {\ncursor: auto;\n    text-decoration-thickness: .01em !important;\n    text-underline-offset: .20em;\n}\na:where(:not(.wp-element-button)):hover {\n    text-decoration: none;\n}",
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--base)"
+					},
+					"outline": {
+						"color": "var(--wp--preset--color--primary)",
+						"offset": "2px",
+						"style": "dotted",
+						"width": "1px"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				"border": {
+					"radius": "0.25rem"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--base)"
+				}
+			},
+			"caption": {
+				"typography": {
+					"fontSize": "0.7rem"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "clamp(1.5rem, calc(1.5rem + ((1vw - 0.48rem) * 0.4808)), 1.75rem)"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "clamp(1.25rem, calc(1.25rem + ((1vw - 0.48rem) * 0.4808)), 1.5rem)"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--rubik)",
+					"fontStyle": "normal",
+					"fontWeight": "700",
+					"lineHeight": "1.125"
+				}
+			},
+			"link": {
+				":hover": {
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "1.5rem",
+			"padding": {
+				"bottom": "0rem",
+				"left": "0rem",
+				"right": "0rem",
+				"top": "0rem"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--helvetica)",
+			"fontSize": "0.8rem",
+			"lineHeight": "1.6"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}