mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 20:02:23 +04:00
d8956a06d6
Co-authored-by: Bartek <xbartoszdobija@gmail.com>
17 lines
571 B
Plaintext
17 lines
571 B
Plaintext
---
|
|
// Port of preview/pages/marketing/testimonials.html (title: Testimonials).
|
|
import MarketingLayout from '@shared/layouts/MarketingLayout.astro';
|
|
import Testimonials from '@shared/components/marketing/sections/Testimonials.astro';
|
|
---
|
|
|
|
<MarketingLayout title="Testimonials">
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h2 class="hero-title">Trusted by hundreds</h2>
|
|
<p class="hero-description">Our Users send us bunch of smilies with our services, and we love them 😍</p>
|
|
</div>
|
|
</header>
|
|
|
|
<Testimonials hideHeader class="pt-0" />
|
|
</MarketingLayout>
|