Say Hello to start a conversation, or simply describe your spreadsheet problem in detail.
+
ExcelMaster is an AI assistant that specializes in Excel formulas. It provides easy-to-understand, step-by-step solutions using Excel formulas, along with tips and optimizations.
+
To get the best results, try to provide simple, clear and step-by-step instruction to your spreadsheet problem.
+
+
+
diff --git a/examples/excel-master/components/suggestions.tsx b/examples/excel-master/components/suggestions.tsx
new file mode 100644
index 00000000..a93eb44d
--- /dev/null
+++ b/examples/excel-master/components/suggestions.tsx
@@ -0,0 +1,52 @@
+import cn from 'mxcn'
+import { IconSparkles } from './ui/icons'
+
+// Prompt suggestions – Change these to match your use-case/company
+const suggestions = [
+ {
+ title: `Say hello to begin conversation`,
+ prompt: `Hello`
+ },
+ {
+ title: `Provide an example on how to use ExcelMaster`,
+ prompt: `Provide an example on how to use your services`
+ },
+]
+
+export const Suggestions = ({
+ sendSuggestedPrompt
+}: {
+ sendSuggestedPrompt: (prompt: string) => void
+}) => {
+ const handleClick = (prompt: string) => {
+ sendSuggestedPrompt(prompt)
+ }
+
+ return (
+