diff --git a/src/assets/images/sql-query-demo.gif b/src/assets/images/sql-query-demo.gif new file mode 100644 index 0000000..aaab6ca Binary files /dev/null and b/src/assets/images/sql-query-demo.gif differ diff --git a/src/components/Features3.jsx b/src/components/Features3.jsx new file mode 100644 index 0000000..88f6a95 --- /dev/null +++ b/src/components/Features3.jsx @@ -0,0 +1,72 @@ +import { motion } from "framer-motion"; + +import recipedemo from "../assets/images/sql-query-demo.gif"; +import { CheckArrowIcon } from "../assets/icons/CheckArrowIcon"; + +export const Features3 = () => { + return ( +
+ +
+
+
+ + Polars SQL queries + +

+ Run Polars SQL queries on your data +

+

+ Using qsv's built-in sqlp command, qsv pro + leverages{" "} + + Polars + {" "} + so you may run SQL queries to learn more + insights from your spreadsheet data. +

+
    +
  • + + + Run Polars SQL queries your spreadsheet + data + +
  • +
  • + + + View query output in a data table + +
  • +
  • + + + Get the estimated elapsed time for your + queries + +
  • +
+
+
+
+ Recipe Demo +
+
+
+
+ ); +}; diff --git a/src/pages/index.astro b/src/pages/index.astro index c8aafae..6c13723 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -16,6 +16,7 @@ import { ScrollUpButton } from "../components/ScrollUpButton"; import "../styles/Theme.css"; import "../styles/Diagonals.css"; import { Features0 } from "../components/Features0"; +import { Features3 } from "../components/Features3"; --- @@ -27,6 +28,7 @@ import { Features0 } from "../components/Features0"; +