From 1a54825bebbda55bc89c05f535b3cb1527f4f6dd Mon Sep 17 00:00:00 2001 From: Sebastian Sebald Date: Mon, 23 Sep 2024 16:40:47 +0200 Subject: [PATCH] save --- docs/app/page.tsx | 16 +++++++++------- docs/ui/BlurFade.tsx | 4 ++-- docs/ui/icons/BigArrowRight.tsx | 18 ------------------ 3 files changed, 11 insertions(+), 27 deletions(-) delete mode 100644 docs/ui/icons/BigArrowRight.tsx diff --git a/docs/app/page.tsx b/docs/app/page.tsx index e077960811..dac1537c8a 100644 --- a/docs/app/page.tsx +++ b/docs/app/page.tsx @@ -1,4 +1,4 @@ -import { Center, Inline, Link, Stack } from '@/ui'; +import { Center, Inline, Link } from '@/ui'; import type { PropsWithChildren } from 'react'; import { AccessibiltySection } from './_components/landingpage/AccessibiltySection'; import { CollaborationSection } from './_components/landingpage/CollaborationSection'; @@ -46,20 +46,19 @@ export const Page = () => (
- +
Built to be accessible Marigold is designed with accessibility in mind from the ground up. It leverages React Aria for screen reader and keyboard navigation support, ensuring your applications are ready for every user. - Learn more about Marigold - +
-
+
Made for collaboration Designers and developers iterate together using shared tools like @@ -70,7 +69,7 @@ export const Page = () => (
-
+
Complex layouts, simplified. Ready-to-use layout components make it easy to build pages of any @@ -78,12 +77,15 @@ export const Page = () => ( responsive, structured designs, streamlining the process without the need for complex CSS. + + ▶︎ Learn more about layouts +
-
+
One system, flexible styles. All components are built to adapt seamlessly to different brands and diff --git a/docs/ui/BlurFade.tsx b/docs/ui/BlurFade.tsx index 8c1cc722d1..d22a4768fc 100644 --- a/docs/ui/BlurFade.tsx +++ b/docs/ui/BlurFade.tsx @@ -37,8 +37,8 @@ export const BlurFade = ({ const inViewResult = useInView(ref, { once: true, margin: inViewMargin }); const isInView = !inView || inViewResult; const defaultVariants: Variants = { - hidden: { y: yOffset, opacity: 0, filter: `blur(${blur})` }, - visible: { y: -yOffset, opacity: 1, filter: `blur(0px)` }, + hidden: { y: -yOffset, opacity: 0, filter: `blur(${blur})` }, + visible: { y: 0, opacity: 1, filter: `blur(0px)` }, }; const combinedVariants = variant || defaultVariants; return ( diff --git a/docs/ui/icons/BigArrowRight.tsx b/docs/ui/icons/BigArrowRight.tsx deleted file mode 100644 index c97b56ba4e..0000000000 --- a/docs/ui/icons/BigArrowRight.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { cn } from '@marigold/system'; - -export const BigArrowRight = ({ className }: { className?: string }) => ( - - - -);