diff --git a/starters/landing-page/assets/media/testimonial-1.jpg b/starters/landing-page/assets/media/testimonial-1.jpg new file mode 100644 index 00000000..49337e47 Binary files /dev/null and b/starters/landing-page/assets/media/testimonial-1.jpg differ diff --git a/starters/landing-page/content/_index.md b/starters/landing-page/content/_index.md index 5de368dd..b126ba5e 100644 --- a/starters/landing-page/content/_index.md +++ b/starters/landing-page/content/_index.md @@ -36,6 +36,27 @@ sections: filename: bg-triangles.svg filters: brightness: 0.5 + - block: stats + content: + items: + - statistic: "1M+" + description: | + Websites built + with Hugo Blox + - statistic: "10k+" + description: | + GitHub stars + since 2016 + - statistic: "3k+" + description: | + Discord community + for support + design: + # Section background color (CSS class) + css_class: "bg-gray-100 dark:bg-gray-900" + # Reduce spacing + spacing: + padding: ["1rem", 0, "1rem", 0] - block: features id: features content: @@ -89,7 +110,22 @@ sections: text: Join Discord url: https://discord.gg/z8wNYzb design: + # Section background color (CSS class) css_class: "bg-gray-100 dark:bg-gray-900" + - block: testimonials + content: + title: "" + text: "" + items: + - name: "Hugo Smith" + role: "Marketing Executive at X" + # Upload image to `assets/media/` and reference the filename here + image: "testimonial-1.jpg" + text: "Awesome, so easy to use and saved me so much work with the swappable pre-designed sections!" + design: + spacing: + # Reduce bottom spacing so the testimonial appears vertically centered between sections + padding: ["6rem", 0, 0, 0] - block: cta-card content: title: Build your future-proof website @@ -97,4 +133,9 @@ sections: button: text: Get Started url: https://hugoblox.com/templates/ + design: + card: + # Card background color (CSS class) + css_class: "bg-primary-700" + css_style: "" --- diff --git a/starters/landing-page/go.mod b/starters/landing-page/go.mod index 020d5ea0..1649a01c 100644 --- a/starters/landing-page/go.mod +++ b/starters/landing-page/go.mod @@ -4,5 +4,5 @@ go 1.19 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20231108143325-448ed0e3bd2b - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.1.2-0.20231217135217-f1e179b23dc3 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.1.2-0.20240103201312-35f75d5b7e3b )