+ AI Numerical Calculator
+
+ setInput(e.target.value)}
+ placeholder="Enter number"
+ />
+
+
+
+ {result && {result}
}
+
+ );
+};
+
+export default AICalculator;
diff --git a/frontend/src/pages/lottery_prediction.tsx b/frontend/src/pages/lottery_prediction.tsx
index f126751..e28b441 100644
--- a/frontend/src/pages/lottery_prediction.tsx
+++ b/frontend/src/pages/lottery_prediction.tsx
@@ -1,4 +1,4 @@
-import { mdiBrain } from '@mdi/js'
+import { mdiBrain, mdiCalculator } from '@mdi/js'
import Head from 'next/head'
import React, { ReactElement, useState, useEffect } from 'react'
import axios from 'axios'
@@ -8,7 +8,7 @@ import SectionMain from '../components/SectionMain'
import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton'
import { getPageTitle } from '../config'
import BaseButton from '../components/BaseButton'
-import { SelectField } from '../components/SelectField'
+import AICalculator from '../components/AICalculator'
const LotteryPrediction = () => {
const [prediction, setPrediction] = useState(null)
@@ -70,6 +70,9 @@ const LotteryPrediction = () => {
)}
+
+