diff --git a/pages/index.jsx b/pages/index.jsx index 67d6e270..87740ae9 100644 --- a/pages/index.jsx +++ b/pages/index.jsx @@ -1,11 +1,6 @@ import { Fragment, useState } from "react"; import { LandingLayout } from "@/layout"; -import { LandingPage } from "@/containers"; - -// Import your images or replace with actual image URLs -import usernameIcon from "./path/to/username-icon.png"; -import passwordIcon from "./path/to/password-icon.png"; - +import Image from "next/image"; function Login() { const [username, setUsername] = useState(""); const [password, setPassword] = useState(""); @@ -14,7 +9,6 @@ function Login() { e.preventDefault(); console.log("Username:", username); console.log("Password:", password); - // Add your authentication logic here }; return ( @@ -24,7 +18,12 @@ function Login() {

Login