A single-page sponsorship site for Bloom: Let's Hangout with Ifeoluwa, Saturday 13 June 2026, Lagos.
Double-click index.html — it opens in your default browser. That's it. No install, no setup.
- Go to https://app.netlify.com/drop
- Drag this entire folder (
influence corner) onto the page - Netlify gives you a public URL like
https://bloom-hangout.netlify.app - Share that link in WhatsApp, Instagram bio, DMs, anywhere
To get a custom domain like bloomwithifeoluwa.com:
- Buy one from Namecheap or similar (~₦8,000/year)
- In Netlify → Site settings → Domain management → Add custom domain
- Follow the on-screen DNS instructions
Whenever you change anything (prices, items, photos, text):
- Edit the file in any text editor (TextEdit on Mac, Notepad on Windows, or VS Code)
- Save
- Drag the folder onto netlify.com/drop again — your site updates instantly at the same URL
The flyer reads 081061599255 (12 digits) but Nigerian mobile numbers are 11 digits. The site currently uses 2348106159255 as a best guess.
To fix: open script.js, find the line near the top:
const WHATSAPP_NUMBER = '2348106159255';Replace with the correct number in international format (no +, no 0, just 234 followed by the 10 digits). For example, if the real number is 0810 615 9925, use '2348106159925'.
Also update the displayed number in index.html — search for 081061599255 (appears once in the footer).
In index.html, find:
<a href="#" target="_blank" rel="noopener">Instagram → @theinfluencecornerwithifeoluwa</a>Change href="#" to href="https://instagram.com/your_handle" and update the @handle text.
Drop 3–6 JPG/PNG files into assets/gallery/, then in index.html replace:
<div class="gallery__tile" aria-label="Past event photo placeholder">📷</div>with:
<img class="gallery__tile" src="assets/gallery/your-photo.jpg" alt="Description of the photo" loading="lazy" />Open index.html, search for ₦ to find every price. Each amount appears in two places per item:
- The visible price (
<div class="sponsor-card__amount">) - The
data-amountattribute on the<article>(used in the WhatsApp message)
Update both for each item you change so the message and the displayed price match.
influence corner/
├── index.html The page itself
├── styles.css Visual design
├── script.js Countdown, WhatsApp links, copy button
├── assets/
│ └── gallery/ Drop past-event photos here
└── README.md This file
- Live countdown to 13 June 2026, 11:00 AM (Lagos time)
- 16 sponsorship items across 5 categories — refreshments, wellness, guest experience, logistics, monetary
- Sponsor this button on each card opens WhatsApp with a pre-filled message naming the specific item and amount
- Bank details card with one-click copy on the account number
- Custom partnerships CTA for brands wanting bespoke arrangements
- Mobile-first layout — looks right on phones (where most sponsors will open it)
Edit anything, break anything — these files are just text. Worst case, drag the folder onto netlify.com/drop again and the site comes back.