diff --git a/web/src/components/Card.astro b/web/src/components/Card.astro index 67fade0..67246ae 100644 --- a/web/src/components/Card.astro +++ b/web/src/components/Card.astro @@ -3,7 +3,7 @@ import type { HTMLAttributes } from "astro/types"; import { VariantProps, cva } from "class-variance-authority"; const card = cva( - "rounded-card transition-colors bg-neutral-accent ring-2 ring-main/10 flex-1", + "rounded-card transition-colors bg-neutral-accent ring-2 ring-main/10", { variants: { interactable: { @@ -23,9 +23,14 @@ export interface Props extends HTMLAttributes<"div">, VariantProps {} -const { interactable = false, padding = true, ...props } = Astro.props; +const { + interactable = false, + padding = true, + class: _class, + ...props +} = Astro.props; --- -
+
diff --git a/web/src/components/Cards/CardFeature.astro b/web/src/components/Cards/CardFeature.astro index 2d9db1a..5f19ffb 100644 --- a/web/src/components/Cards/CardFeature.astro +++ b/web/src/components/Cards/CardFeature.astro @@ -11,8 +11,8 @@ export interface Props { const { title, description, iconName } = Astro.props; --- - -
+ +

diff --git a/web/src/pages/index.astro b/web/src/pages/index.astro index 6f2446f..f6af204 100644 --- a/web/src/pages/index.astro +++ b/web/src/pages/index.astro @@ -8,13 +8,13 @@ import Features from "@/sections/Features.astro";
-
+
-
+
diff --git a/web/src/sections/Features.astro b/web/src/sections/Features.astro index 8872087..ba4052d 100644 --- a/web/src/sections/Features.astro +++ b/web/src/sections/Features.astro @@ -30,8 +30,12 @@ const features: Array = [ ---
- Core Features & Values -
+
+ Core Features & Values +
+
{ features.map((feature) => ( -
+
+
@@ -21,7 +21,6 @@ import Button from "@/components/Button.astro";

Rust Based Open Source Motion Design Editor & Toolkit

-
diff --git a/web/src/styles/global.css b/web/src/styles/global.css index 0eceeb6..c7df736 100644 --- a/web/src/styles/global.css +++ b/web/src/styles/global.css @@ -27,9 +27,9 @@ :root { --color-main: 0 0% 100%; --color-secondary: 0 0% 80%; - --color-primary: 0 0% 0%; - --color-neutral: 264 100% 6%; - --color-neutral-accent: 271 100% 10%; + --color-primary: 280 90% 60%; + --color-neutral: 240 100% 4%; + --color-neutral-accent: 250 70% 6%; --color-highlight: 336 100% 60%; --color-success: 132 100% 78%; --color-error: 335 100% 62%;