diff --git a/components/ui/ChatInterface.tsx b/components/ui/ChatInterface.tsx index 2d0247b..f73cc8f 100644 --- a/components/ui/ChatInterface.tsx +++ b/components/ui/ChatInterface.tsx @@ -7,7 +7,8 @@ import Modal from './ImageModal'; // Move this outside of the component const getRandomChips = () => { - return chipOptions.slice().sort(() => 0.5 - Math.random()).slice(0, 3); + const randomChips = chipOptions.slice().sort(() => 0.5 - Math.random()).slice(0, 2); + return [...randomChips, "CDP @Devcon"]; }; const INITIAL_MESSAGE = { text: "Hello! What would you like to mint today?", sender: "bot" as const, id: 0 }; diff --git a/data/chipOptions.ts b/data/chipOptions.ts index 003e9c6..080aed3 100644 --- a/data/chipOptions.ts +++ b/data/chipOptions.ts @@ -97,5 +97,6 @@ export const chipOptions = [ "Bioluminescent Mangrove", "Astral Time Lapse", "Cybernetic Coral Reef", - "Galactic Dreamcatcher" -]; \ No newline at end of file + "Galactic Dreamcatcher", + "CDP @Devcon" +]; diff --git a/public/images/99.png b/public/images/99.png new file mode 100644 index 0000000..aea341f Binary files /dev/null and b/public/images/99.png differ