Posts

Celebration Wishes Generator - Rakhra Blogs

Image
Celebration Wishes Generator - Rakhra Blogs 🎉 Celebration Wishes Generator 🎉 Create beautiful wishes for any occasion with custom designs Design Your Wish Occasion Type Birthday 🎂 Anniversary 💍 Festival 🪔 New Year 🎆 Wedding 💒 Language English Hindi Punjabi Bengali Tamil Telugu Marathi ...

🎉 Celebration Wishes Generator - Rakhra Blogs

Image
import React, { useState, ChangeEvent, FormEvent } from 'react'; const CelebrationWishesGenerator: React.FC = () => { const languages = ["English", "Hindi", "Punjabi", "Gujarati", "Tamil", "Telugu", "Bengali"]; const labels = ["Birthday", "Anniversary", "Diwali", "Christmas", "New Year"]; const [wish, setWish] = useState(''); const [language, setLanguage] = useState(languages[0]); const [bgColor, setBgColor] = useState('#ffb347'); const [imageUrl, setImageUrl] = useState(''); const [search, setSearch] = useState(''); const handleImageUpload = (e: ChangeEvent ) => { const file = e.target.files?.[0]; if (file) { const reader = new FileReader(); reader.onload = () => setImageUrl(reader.result as string); reader.readAsDataURL(file); } }; const handleSubmit = (e: FormEvent...