Skip to content

Commit 0994cf9

Browse files
committed
Web updates
1 parent 3d41af9 commit 0994cf9

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

website/src/partials/Quotes.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ export const QuotesSection: React.FC = () => {
8787
data-aos="fade-left"
8888
data-aos-delay={i * 50}
8989
className={clsx(
90+
"bg-white",
9091
"flex flex-col",
9192
"not-italic w-96 min-w-[380px] bg-gray-50 relative flex flex-col items-center justify-center px-8 py-6 rounded-2xl border", defaultBorderMixin)}>
9293

website/src/partials/features/SchemaEditorIntro.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from "react"
22

33
// @ts-ignore
4-
import collectionEditorVideo from "@site/static/img/collection_editor_preview.mp4";
5-
import { ContainerMixin, ContainerPaddingMixin, CTACaret, CTAOutlinedButtonMixin, defaultBorderMixin } from "../styles";
4+
import collectionEditorVideo from "@site/static/img/colection_editor.webm";
5+
import { ContainerMixin, ContainerPaddingMixin, defaultBorderMixin } from "../styles";
66
import clsx from "clsx";
77

88
export const SchemaEditorIntro = () => {
@@ -54,7 +54,7 @@ export const SchemaEditorIntro = () => {
5454
<video
5555
style={{
5656
pointerEvents: "none",
57-
aspectRatio: 2.415
57+
aspectRatio: 1296 / 699
5858
}}
5959
className={"rounded-xl"}
6060
width="100%" loop autoPlay muted>

website/src/partials/general/Panel.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function Panel({
1717
header?: React.ReactNode,
1818
children: React.ReactNode,
1919
footer?: React.ReactNode,
20-
color?: "gray" | "dark_gray" | "light_gray" | "white" | "white-to-slate" | "primary" | "secondary" | "light" | "lighter" | "transparent",
20+
color?: "gray" | "dark_gray" | "light_gray" | "white" | "white-to-slate" | "primary" | "secondary" | "light" |"light-to-white" | "lighter" | "transparent",
2121
centered?: boolean,
2222
includeMargin?: boolean,
2323
includePadding?: boolean,
@@ -30,6 +30,7 @@ export function Panel({
3030
color === "white" ? "bg-white text-text-primary" :
3131
color === "white-to-slate" ? "bg-gradient-to-b from-white to-slate-50 text-text-primary" :
3232
color === "light" ? "bg-gray-100 text-text-primary" :
33+
color === "light-to-white" ? "bg-gradient-to-b from-gray-100 to-white text-text-primary" :
3334
color === "lighter" ? "bg-gray-50 text-text-primary" :
3435
color === "light_gray" ? "bg-gray-700 text-white dark:text-white" :
3536
color === "gray" ? "bg-gray-800 text-white dark:text-white" :

website/src/partials/home/FirebaseIntro.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { LinedSpace } from "../layout/LinedSpace";
1313

1414
function FirebaseIntro() {
1515
return (
16-
<Panel color={"white"}
16+
<Panel color={"light-to-white"}
1717
container={false}
1818
includePadding={false}
1919
includeMargin={false}>
3.17 MB
Binary file not shown.
-1.04 MB
Binary file not shown.

0 commit comments

Comments
 (0)