From b8887b6f0befcd4c695b08b80a92cb8616d9df7c Mon Sep 17 00:00:00 2001 From: Nick Tchayka Date: Wed, 6 Sep 2023 13:37:08 +0100 Subject: Shuffle feats --- src/components/HomepageFeatures/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/HomepageFeatures/index.tsx b/src/components/HomepageFeatures/index.tsx index e1c42d3..a106a93 100644 --- a/src/components/HomepageFeatures/index.tsx +++ b/src/components/HomepageFeatures/index.tsx @@ -9,6 +9,7 @@ type ShowCase = | { img: React.ComponentType> }; type FeatureItem = { + n?: number; title: string; description: JSX.Element; showcase: ShowCase; @@ -77,7 +78,9 @@ const FeatureList: FeatureItem[] = [ }, ]; -function Feature({ title, showcase, description, buttonText }: FeatureItem) { +function Feature({ n, title, showcase, description, buttonText }: FeatureItem) { + const k = n ?? 0; + const reverse = k % 2 === 0 ? "flex-row" : "flex-row-reverse"; const showcaseComponent = "code" in showcase ? ( {showcase.code} @@ -85,7 +88,7 @@ function Feature({ title, showcase, description, buttonText }: FeatureItem) { ); return ( -
+
{showcaseComponent}

{title}

@@ -104,7 +107,7 @@ export default function HomepageFeatures(): JSX.Element {
{FeatureList.map((props, idx) => ( - + ))}
-- cgit