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

37 lines
1.2 KiB
Plaintext

---
// Port of preview/pages/marketing/index.html (permalink marketing/index.html).
import MarketingLayout from '@shared/layouts/MarketingLayout.astro';
import Browser from '@shared/components/marketing/hero/Browser.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>
<Browser />
<Companies background="light" class="mt-n12 pt-12" divider="waves" />
<Features />
<Features2 background="light" />
<Cta />
<Features3 background="light" />
<Testimonials limit={9} />
<Counters background="light" />
<Subscribe />
<Faq2 background="light" />
</MarketingLayout>