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

37 lines
1.2 KiB
Plaintext

---
// Port of preview/pages/marketing/hero.html (title: Hero, page-libs: [typed.js]).
import MarketingLayout from '@shared/layouts/MarketingLayout.astro';
import Side from '@shared/components/marketing/hero/Side.astro';
import Companies from '@shared/components/marketing/sections/Companies.astro';
import Features from '@shared/components/marketing/sections/Features.astro';
import Features2 from '@shared/components/marketing/sections/Features2.astro';
import Cta from '@shared/components/marketing/sections/Cta.astro';
import Features3 from '@shared/components/marketing/sections/Features3.astro';
import Testimonials from '@shared/components/marketing/sections/Testimonials.astro';
import Counters from '@shared/components/marketing/sections/Counters.astro';
import Subscribe from '@shared/components/marketing/sections/Subscribe.astro';
import Faq2 from '@shared/components/marketing/sections/Faq2.astro';
---
<MarketingLayout title="Hero" pageLibs={['typed.js']}>
<Side />
<Companies background="light" class="mt-4 pt-4" divider="waves" />
<Features />
<Features2 background="light" />
<Cta />
<Features3 background="light" />
<Testimonials limit={9} />
<Counters background="light" />
<Subscribe />
<Faq2 background="light" />
</MarketingLayout>