1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 20:02:23 +04:00
Files
tabler/preview/pages/marketing/testimonials.astro
T
2026-07-28 00:09:02 +02:00

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>