-
-
-
-
-
-
-
- |
- Name
- |
-
- Title
- |
-
- Email
- |
-
-
-
- {people.map((person) => (
-
- |
- {person.name}
- |
-
- {person.title}
- |
-
- {person.email}
- |
-
- ))}
-
-
-
+
+ No uncontrolled cloud spending. No hidden fees. No limits.
+
+ {/*
+
+
+ Payment frequency
+
+ {frequencies.map((option) => (
+
+ classNames(
+ checked ? "bg-indigo-600 text-white" : "text-gray-500",
+ "cursor-pointer rounded-full px-2.5 py-1"
+ )
+ }
+ >
+ {option.label}
+
+ ))}
+
+
*/}
+
+ {tiers.map((tier) => (
+
+
+
+ {tier.name}
+
+ {tier.mostPopular ? (
+
+ Fully private
+
+ ) : null}
+
+ {tier.description}
+
+
+
+ {tier.price[frequency.value]}
+
+
+ {frequency.priceSuffix}
+
+
+ {/*
+ Buy plan
+ */}
+
+ {tier.features.map((feature) => (
+ -
+
+ {feature}
+
+ ))}
+
-
+ ))}
diff --git a/docs/src/components/Homepage/sectionTwo.js b/docs/src/components/Homepage/sectionTwo.js
index c3e432929..8cd354892 100644
--- a/docs/src/components/Homepage/sectionTwo.js
+++ b/docs/src/components/Homepage/sectionTwo.js
@@ -8,6 +8,7 @@ import {
RocketLaunchIcon,
ServerIcon,
} from "@heroicons/react/20/solid";
+import { useColorMode } from "@docusaurus/theme-common";
const features = [
{
@@ -30,6 +31,7 @@ const features = [
];
export default function sectionTwo() {
+ const { colorMode } = useColorMode();
return (
@@ -64,7 +66,12 @@ export default function sectionTwo() {
-
-
+ {/*
+
*/}
);
diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css
index 9f71a5da7..6fdd6da59 100644
--- a/docs/src/pages/index.module.css
+++ b/docs/src/pages/index.module.css
@@ -3,7 +3,7 @@
* and scoped locally.
*/
-.heroBanner {
+/* .heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
@@ -20,4 +20,4 @@
display: flex;
align-items: center;
justify-content: center;
-}
+} */
diff --git a/docs/static/img/desktop-screenshot-dark.png b/docs/static/img/desktop-explore-models-dark.png
similarity index 100%
rename from docs/static/img/desktop-screenshot-dark.png
rename to docs/static/img/desktop-explore-models-dark.png
diff --git a/docs/static/img/desktop-screenshot.png b/docs/static/img/desktop-explore-models.png
similarity index 100%
rename from docs/static/img/desktop-screenshot.png
rename to docs/static/img/desktop-explore-models.png
diff --git a/docs/static/img/desktop-llm-chat.png b/docs/static/img/desktop-llm-chat.png
new file mode 100644
index 000000000..b235dfc0a
Binary files /dev/null and b/docs/static/img/desktop-llm-chat.png differ
diff --git a/docs/static/img/desktop-model-settings.png b/docs/static/img/desktop-model-settings.png
new file mode 100644
index 000000000..d22014991
Binary files /dev/null and b/docs/static/img/desktop-model-settings.png differ