Skip to main content

Posts

Featured

import React, { useState, useEffect } from 'react'; import { Search, Home, Briefcase, MessageSquare, User, Star, MapPin, Award, Eye, EyeOff, Mail, Lock, Phone, Loader, AlertCircle } from 'lucide-react'; import { initializeApp } from "firebase/app"; import { getAuth, createUserWithEmailAndPassword, signInWithEmailAndPassword, sendPasswordResetEmail } from "firebase/auth"; // ===== تهيئة Firebase ===== const firebaseConfig = {   apiKey: "YOUR_API_KEY",   authDomain: "YOUR_PROJECT_ID.firebaseapp.com",   projectId: "YOUR_PROJECT_ID",   storageBucket: "YOUR_PROJECT_ID.appspot.com",   messagingSenderId: "YOUR_SENDER_ID",   appId: "YOUR_APP_ID" }; const app = initializeApp(firebaseConfig); const auth = getAuth(app); export default function AjitkhdmApp() {   const [user, setUser] = useState(null);   const [showLogin, setShowLogin] = useState(true);   const [showPw, setShowPw] = useState(false);   co...

Latest Posts