diff --git a/src/app/event-pradhosham-puja/pradhosham-puja.jsx b/src/app/event-pradhosham-puja/pradhosham-puja.jsx new file mode 100644 index 0000000..7658949 --- /dev/null +++ b/src/app/event-pradhosham-puja/pradhosham-puja.jsx @@ -0,0 +1,189 @@ +const registrationOptions = [ + { + title: "Event Attendance", + price: "Free", + description: "Free admission for registered attendees. Limited seating is available.", + }, + { + title: "Single Person Archanai", + price: "$11", + description: "Archanai offering for one devotee.", + }, + { + title: "Family Archanai", + price: "$21", + description: "Archanai offering for a family of one to four devotees.", + }, +]; + +const schedule = [ + { + title: "Pradosha Kala Puja", + description: "Begins at 6:30 PM with Ganapathy Puja.", + }, + { + title: "Rudrabhishekam", + description: "Accompanied by the recitation of Namakam and Camaka Prasna.", + }, + { + title: "Rudra Trisathi Archana", + description: "The evening culminates with Archana featuring silver Bilva leaves.", + }, +]; + +const PradhoshamPuja = () => { + return ( + <> +
+
+
+
+
+ Pradosham Puja at Sri Murugan Temple of Waterloo +
+
+ +
+
+ UPCOMING EVENT +

Pradosham Puja

+

+ Sri Murugan Temple of Waterloo Region & Community Centre warmly invites devotees + and families to join this sacred evening of worship and receive the blessings of + Lord Shiva and Lord Murugan. +

+ +
+

+ TUESDAY, AUGUST 25, 2026 +

+
6:30 PM - 8:30 PM
+

Sri Murugan Temple of Waterloo

+

+ 935 Frederick St, Kitchener, ON N2B 1V5, Canada +

+
+
+
+
+
+
+ +
+
+
+ PUJA SCHEDULE +

Sacred Evening Program

+
+
+ {schedule.map((item) => ( +
+
+

{item.title}

+

{item.description}

+
+
+ ))} +
+
+
+ +
+
+
+ REGISTRATION OPTIONS +

Attend and Offer Archanai

+

+ Attendance is free. Devotees may also choose a single-person or family Archanai. +

+
+ +
+ {registrationOptions.map((option) => ( +
+
+

{option.title}

+

+ {option.price} +

+

{option.description}

+
+
+ ))} +
+ +
+

+ For registration enquiries, contact the temple at + {" "} + + info@waterloomurugantemple.ca + . +

+ + Registration Enquiry + +
+
+
+ +
+
+
+
+
+ SIGNIFICANCE +

The Blessings of Pradosham

+

+ Pradosham is an auspicious time dedicated to the worship of Lord Shiva. Devotees + gather in prayer, participate in Abhishekam and Archana, and seek grace for peace, + spiritual clarity, family well-being, and the removal of obstacles. All are welcome + to join this sacred observance with faith and devotion. +

+
+
+
+
+
+ + ); +}; + +export default PradhoshamPuja;