Add footer
Browse files- docs/public/arrow.svg +1 -0
- docs/public/github.svg +1 -0
- docs/public/thumbs.svg +14 -0
- docs/src/pages/index.astro +44 -0
docs/public/arrow.svg
ADDED
|
docs/public/github.svg
ADDED
|
docs/public/thumbs.svg
ADDED
|
docs/src/pages/index.astro
CHANGED
@@ -77,4 +77,48 @@ import { ExampleButton } from "../components/examples/ExampleButton";
|
|
77 |
</Container>
|
78 |
</div>
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
</BaseLayout>
|
|
|
77 |
</Container>
|
78 |
</div>
|
79 |
|
80 |
+
<div class="py-32 bg-white text-black">
|
81 |
+
<Container>
|
82 |
+
<div class="flex items-center">
|
83 |
+
<div>
|
84 |
+
<h2 class="text-6xl font-bold mb-4">Loved by Thousands</h2>
|
85 |
+
<p class="text-2xl text-black mb-8">Driver.js is an <span class="font-bold">MIT licensed</span> opensource
|
86 |
+
project and is loved and used by
|
87 |
+
thousands of developers and companies around the world.</p>
|
88 |
+
|
89 |
+
<div class="flex gap-3">
|
90 |
+
<a href="#"
|
91 |
+
class="flex items-center font-bold text-2xl rounded-xl py-3 px-5 bg-yellow-300 border-yellow-300 hover:bg-yellow-400">
|
92 |
+
<span class="mr-3 inline-flex items-center"><img src="/github.svg" alt="Hero Image" class="h-7 mr-2" /> 14.7k</span>
|
93 |
+
GitHub Stars
|
94 |
+
</a>
|
95 |
+
<a href="#"
|
96 |
+
class="bg-black text-white flex items-center font-bold text-2xl border-4 border-black rounded-xl py-3 px-5 hover:bg-gray-800">
|
97 |
+
Start Using Driver.js
|
98 |
+
</a>
|
99 |
+
</div>
|
100 |
+
</div>
|
101 |
+
<img src="/thumbs.svg" alt="Hero Image" class="h-36 ml-16" />
|
102 |
+
</div>
|
103 |
+
</Container>
|
104 |
+
</div>
|
105 |
+
|
106 |
+
<div class="py-8 bg-black text-white">
|
107 |
+
<Container>
|
108 |
+
<p class="text-lg text-white text-center">
|
109 |
+
MIT Licensed © 2023 <span class="mx-3">·</span>
|
110 |
+
<a href="#" class="">
|
111 |
+
Docs
|
112 |
+
</a>
|
113 |
+
<a href="#" class="ml-5">
|
114 |
+
GitHub
|
115 |
+
<img src="/arrow.svg" class="h-3 inline-block ml-2" alt="GitHub" />
|
116 |
+
</a>
|
117 |
+
<a href="#" class=" ml-5">
|
118 |
+
Twitter
|
119 |
+
<img src="/arrow.svg" class="h-3 inline-block ml-2" alt="GitHub" />
|
120 |
+
</a>
|
121 |
+
</p>
|
122 |
+
</Container>
|
123 |
+
</div>
|
124 |
</BaseLayout>
|