javacatknight commented on code in PR #36386:
URL: https://github.com/apache/superset/pull/36386#discussion_r2583031158


##########
docs/src/pages/inTheWild.tsx:
##########
@@ -0,0 +1,214 @@
+// Updated version of the page with the requested text added
+
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { useEffect, useState } from 'react';
+import BlurredSection from '../components/BlurredSection';
+import { Collapse } from 'antd';
+import Layout from '@theme/Layout';
+import { results as DataSet } from '../../static/resources/inTheWild.js';
+import styled from '@emotion/styled';
+import SectionHeader from '../components/SectionHeader';
+import { mq } from '../utils';
+
+const StyledGrid = styled('div')`
+  display: grid;
+  grid-template-columns: repeat(3, minmax(0, 1fr));
+  gap: 20px;
+  max-width: 800px;
+  margin: 30px auto;
+  padding: 0 20px;
+  ${mq[1]} {
+    grid-template-columns: repeat(2, minmax(0, 1fr));
+  }
+  ${mq[0]} {
+    grid-template-columns: repeat(1, minmax(0, 1fr));
+  }
+`;
+
+const Card = styled('div')`
+  border: 1px solid var(--ifm-border-color);
+  border-radius: 10px;
+  padding: 20px;
+  text-align: center;
+  background: linear-gradient(180deg, rgba(0,122,204,0.06) 0%, 
rgba(0,122,204,0.03) 100%);
+  height: 150px;
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  align-items: center;
+  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
+  transition: box-shadow 0.25s ease, transform 0.25s ease;
+  strong {
+    font-size: 20px;
+    transition: color 0.25s ease;
+  }
+  a:hover strong {
+    color: var(--ifm-color-primary);
+  }
+  a:hover {
+    text-decoration: none;
+  }
+  a:hover ~ & {

Review Comment:
   My bad, should have commented it out. A classmate suggested it look closer 
to the databases section for consistency so I meant to remove it



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to