+
Hello FHEVM
+
setInput(Number(e.target.value))}
+ />
+
+
{result}
+
+ );
+}
\ No newline at end of file
diff --git a/hello-fhevm/frontend/src/app/favicon.ico b/hello-fhevm/frontend/src/app/favicon.ico
new file mode 100644
index 0000000..718d6fe
Binary files /dev/null and b/hello-fhevm/frontend/src/app/favicon.ico differ
diff --git a/hello-fhevm/frontend/src/app/globals.css b/hello-fhevm/frontend/src/app/globals.css
new file mode 100644
index 0000000..a2dc41e
--- /dev/null
+++ b/hello-fhevm/frontend/src/app/globals.css
@@ -0,0 +1,26 @@
+@import "tailwindcss";
+
+:root {
+ --background: #ffffff;
+ --foreground: #171717;
+}
+
+@theme inline {
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --font-sans: var(--font-geist-sans);
+ --font-mono: var(--font-geist-mono);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --background: #0a0a0a;
+ --foreground: #ededed;
+ }
+}
+
+body {
+ background: var(--background);
+ color: var(--foreground);
+ font-family: Arial, Helvetica, sans-serif;
+}
diff --git a/hello-fhevm/frontend/src/app/layout.tsx b/hello-fhevm/frontend/src/app/layout.tsx
new file mode 100644
index 0000000..f7fa87e
--- /dev/null
+++ b/hello-fhevm/frontend/src/app/layout.tsx
@@ -0,0 +1,34 @@
+import type { Metadata } from "next";
+import { Geist, Geist_Mono } from "next/font/google";
+import "./globals.css";
+
+const geistSans = Geist({
+ variable: "--font-geist-sans",
+ subsets: ["latin"],
+});
+
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono",
+ subsets: ["latin"],
+});
+
+export const metadata: Metadata = {
+ title: "Create Next App",
+ description: "Generated by create next app",
+};
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/hello-fhevm/frontend/src/app/page.tsx b/hello-fhevm/frontend/src/app/page.tsx
new file mode 100644
index 0000000..a932894
--- /dev/null
+++ b/hello-fhevm/frontend/src/app/page.tsx
@@ -0,0 +1,103 @@
+import Image from "next/image";
+
+export default function Home() {
+ return (
+