File size: 1,724 Bytes
c73f86b 7660c1f 6b9b285 c73f86b e2a780e 6b9b285 46f9483 c73f86b 6b9b285 c73f86b 6b9b285 c73f86b 7660c1f 6b9b285 1d3e157 6bcb82f 6b9b285 1d3e157 c73f86b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
---
import BaseLayout from "../layouts/BaseLayout.astro";
import { FeatureMarquee } from "../components/FeatureMarquee";
import Container from "../components/Container.astro";
import UsecaseItem from "../components/UsecaseItem.astro";
import { ExampleButton } from "../components/ExampleButton";
import HeroSection from "../components/HeroSection.astro";
import Examples from "../components/Examples.astro";
import UsecaseList from "../components/UsecaseList.astro";
import OpenSourceLove from "../components/OpenSourceLove.astro";
---
<BaseLayout title="driver.js">
<HeroSection />
<div
class="bg-white overflow-x-hidden overflow-y-hidden relative h-[48px] md:h-[56px] lg:h-[64px] border-b-2 border-b-black"
data-feat-marquee>
<FeatureMarquee client:only />
</div>
<div class="py-10 md:py-12 lg:py-24 bg-white text-black">
<Container>
<Examples />
<UsecaseList />
</Container>
</div>
<OpenSourceLove />
<div class="py-8 bg-black text-white">
<Container>
<p class="text-lg text-white text-center">
MIT Licensed © 2024
<span class="hidden sm:inline">
<span class="mx-3">·</span>
<a href="/docs/installation" class="">
Docs
</a>
<a href="https://github.com/kamranahmedse/driver.js" target="_blank" class="ml-5">
GitHub
<img src="/arrow.svg" class="h-3 inline-block ml-2" alt="GitHub" />
</a>
<a href="https://twitter.com/kamrify" target="_blank" class=" ml-5">
Twitter
<img src="/arrow.svg" class="h-3 inline-block ml-2" alt="GitHub" />
</a>
</span>
</p>
</Container>
</div>
</BaseLayout>
|