from docx import Document
# File path for Word file
file_path_docx = "/mnt/data/student_kit_pamphlet.docx"
# Create a new Word document
doc = Document()
# Title
doc.add_heading("π Smart Student Kit Offer π", level=1)
doc.add_heading("Special Deal for Friends π©βππ¨βππ©βπ", level=2)
# Intro
doc.add_paragraph("π‘ Why waste money buying 10 different items? Get everything you need in ONE KIT β perfect for college & school life.")
# What's Inside
doc.add_heading("π¦ Whatβs Inside the Student Kit?", level=3)
doc.add_paragraph(
"β All-in-One Stationery Pen (pen + pencil + eraser in 1)\\n"
"β Mini Notebook / Exam Pad\\n"
"β Highlighter (1 pc)\\n"
"β Sticky Notes\\n"
"β Ruler (15 cm)\\n"
"β Mini Geometry Tools\\n"
"β Eraser + Sharpener Combo\\n"
"β ID Card Holder (lanyard)\\n"
"β¨ Free Motivational Bookmark"
)
# Price
doc.add_heading("π° Price", level=3)
doc.add_paragraph(
"Single Kit: βΉ499\\n"
"Group Offer: Buy 3 Kits with Friends β Just βΉ450 each!"
)
# Why Students Love It
doc.add_heading("π’ Why Students Love It?", level=3)
doc.add_paragraph(
"β
Saves money πΈ\\n"
"β
All essentials in one pack π\\n"
"β
Perfect for exams & daily study βοΈ\\n"
"β
Cool design & handy size π"
)
# How to Order
doc.add_heading("π How to Order?", level=3)
doc.add_paragraph(
"π Call or WhatsApp:\\n"
"1. 8780233340\\n"
"2. 6352204540\\n"
"3. 8849350933"
)
# Delivery info
doc.add_paragraph("π Free delivery inside campus | COD Available")
# Limited offer
doc.add_paragraph("β‘ Hurry! Only 50 Kits available this week!")
# Save Word file
doc.save(file_path_docx)
file_path_docx