From 2b09df0658217091ae1edb40e8d00d31bf091d79 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Tue, 16 Sep 2025 20:59:25 +0000 Subject: [PATCH] nice version --- apply.php | 191 ++++++++++++++++++++++++++ assets/css/custom.css | 132 ++++++++++++++++++ assets/js/main.js | 1 + code-of-conduct.php | 100 ++++++++++++++ index.php | 312 +++++++++++++++++++++++++----------------- media.php | 95 +++++++++++++ privacy.php | 104 ++++++++++++++ sponsor.php | 210 ++++++++++++++++++++++++++++ thanks.php | 73 ++++++++++ volunteer.php | 173 +++++++++++++++++++++++ 10 files changed, 1265 insertions(+), 126 deletions(-) create mode 100644 apply.php create mode 100644 assets/css/custom.css create mode 100644 assets/js/main.js create mode 100644 code-of-conduct.php create mode 100644 media.php create mode 100644 privacy.php create mode 100644 sponsor.php create mode 100644 thanks.php create mode 100644 volunteer.php diff --git a/apply.php b/apply.php new file mode 100644 index 0000000..3b8c2fe --- /dev/null +++ b/apply.php @@ -0,0 +1,191 @@ +New Pavilion Application +

A new application has been submitted on the website.

+ +

Please review and follow up with them.

+ "; + $textBody = " + New Pavilion Application + + Company Name: {$company_name} + Website: {$website} + Contact Name: {$contact_name} + Contact Email: {$contact_email} + Description: + {$description} + + Reason to Join: + {$reason} + + Agreed to CoC: Yes + "; + + // Send email + $to = null; // Use MAIL_TO from .env + $options = ['reply_to' => $contact_email]; + $result = MailService::sendMail($to, $subject, $htmlBody, $textBody, $options); + + if (!empty($result['success'])) { + // Redirect to 'thanks' page on success + header("Location: thanks.php?from=apply"); + exit; + } else { + // Log error and show a generic message + error_log("MailService Error: " . ($result['error'] ?? 'Unknown error')); + $form_error = 'Sorry, there was an error sending your application. Please try again later or contact us directly.'; + } + } +} +?> + + + + + + Apply to Join | Belarusians Worldwide + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Apply to Join the Pavilion

+

We invite Belarusian startups, companies, and partners to apply to be showcased at our Web Summit pavilion. Fill out the form below, and our team will review your application and get in touch.

+ +
+
+
Application Form
+ +
+ +
+

This is for testing purposes only — Flatlogic does not guarantee usage of the mail server. Please set up your own SMTP in .env (MAIL_/SMTP_ vars).

+

If you do not receive a confirmation, please check your spam folder.

+
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+ + +
What does your company/project do?
+
+
+ + +
What do you hope to achieve at Web Summit? (e.g., find investors, partners, talent)
+
+
+ + +
+ +
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..8b0530b --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,132 @@ + +/* --- Design System --- */ +:root { + --primary-color: #E50000; + --text-color: #111111; + --background-color: #FFFFFF; + --accent-color: #C1C7CD; + --surface-color: #F8F9FA; + --border-radius: 0.25rem; +} + +body { + font-family: 'IBM Plex Sans', sans-serif; + color: var(--text-color); + background-color: var(--background-color); +} + +h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { + font-family: 'Inter', sans-serif; + font-weight: 600; +} + +.btn-primary { + background-color: var(--primary-color); + border-color: var(--primary-color); + font-weight: 600; + padding: 0.75rem 1.5rem; + border-radius: var(--border-radius); + transition: background-color 0.3s ease, border-color 0.3s ease; +} + +.btn-primary:hover { + background-color: #c40000; + border-color: #c40000; +} + +.btn-secondary { + background-color: transparent; + border-color: var(--text-color); + color: var(--text-color); + font-weight: 600; + padding: 0.75rem 1.5rem; + border-radius: var(--border-radius); +} + +.btn-secondary:hover { + background-color: var(--text-color); + color: var(--background-color); +} + +.hero { + background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://picsum.photos/seed/hero-bw-summit/1600/900') no-repeat center center; + background-size: cover; + color: var(--background-color); + padding: 8rem 0; + text-align: center; +} + +.hero h1 { + font-size: 3.5rem; + font-weight: 700; +} + +.hero p { + font-size: 1.25rem; + max-width: 700px; + margin: 1rem auto; +} + +.trust-strip { + font-size: 0.9rem; + text-transform: uppercase; + letter-spacing: 0.5px; + opacity: 0.8; +} + +.logo-strip img { + max-height: 40px; + filter: grayscale(100%) brightness(300%); + opacity: 0.8; + transition: all 0.3s ease; +} + +.logo-strip img:hover { + filter: none; + opacity: 1; +} + +.funding-progress { + position: sticky; + top: 0; + z-index: 1020; + background-color: var(--surface-color); + padding: 1rem 0; + border-bottom: 1px solid #e0e0e0; +} + +.progress { + height: 2rem; + font-size: 1rem; + border-radius: var(--border-radius); +} + +.progress-bar { + background-color: var(--primary-color); +} + +.section { + padding: 5rem 0; +} + +.bchb-divider { + height: 5px; + background: linear-gradient(to right, #fff, #E50000, #fff, #E50000, #fff); + border: 0; + margin: 3rem 0; +} + +.footer { + background-color: var(--text-color); + color: var(--background-color); + padding: 3rem 0; +} + +.footer a { + color: var(--accent-color); + text-decoration: none; +} + +.footer a:hover { + color: var(--background-color); +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..8e4f7a3 --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1 @@ +// Future JavaScript can go here diff --git a/code-of-conduct.php b/code-of-conduct.php new file mode 100644 index 0000000..41751dc --- /dev/null +++ b/code-of-conduct.php @@ -0,0 +1,100 @@ + + + + + + Code of Conduct | Belarusians Worldwide + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Code of Conduct

+

We are committed to providing a safe, welcoming, and harassment-free experience for everyone, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age, or religion.

+ +
+ +

Our Pledge

+

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone.

+ +

Our Standards

+

Examples of behavior that contributes to creating a positive environment include:

+
    +
  • Using welcoming and inclusive language
  • +
  • Being respectful of differing viewpoints and experiences
  • +
  • Gracefully accepting constructive criticism
  • +
  • Focusing on what is best for the community
  • +
  • Showing empathy towards other community members
  • +
+ +

Examples of unacceptable behavior by participants include:

+
    +
  • The use of sexualized language or imagery and unwelcome sexual attention or advances
  • +
  • Trolling, insulting/derogatory comments, and personal or political attacks
  • +
  • Public or private harassment
  • +
  • Publishing others' private information, such as a physical or electronic address, without explicit permission
  • +
  • Other conduct which could reasonably be considered inappropriate in a professional setting
  • +
+ +

Enforcement

+

Community leaders are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.

+

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at coc@belarusiansworldwide.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.

+ +

Scope

+

This Code of Conduct applies to all project spaces, including the Web Summit pavilion, online forums, and any other channels established by the project team. It also applies to individuals representing the project in public spaces.

+ +
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/index.php b/index.php index e13ae95..6a9ba61 100644 --- a/index.php +++ b/index.php @@ -1,131 +1,191 @@ - - + - - - New Style - - - - + + + Belarusians Worldwide: Tech Without Borders | Web Summit 2025 + + + + + + + + + + + + + + + + + + + + + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

Flatlogic AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

-
-
- + + + +
+ +
+ +
+ +
+
+

Belarusians Worldwide: Tech Without Borders

+

+ A cozy, first-time space for founders, engineers, investors, and creatives at Web Summit, Lisbon — Nov 10–13, 2025. +

+ +
+

2×2 pavilion · 3 days · 20 partner tickets included by WS package

+
+
+ + IMAGURU Logo + SVAE/New Belarus Logo + Independent Funders +
+
+
+ + +
+
+
+ Raised: € + Target: € +
+
+
%
+
+
+

We’re self-funded — no state, no grants. Every euro goes to the pavilion.

+
+
+
+ + +
+
+
+
+

Why This Matters

+

Symbolism & Presence: We show up as Belarusians on Europe’s biggest tech stage, funded by ourselves.

+

PR & Visibility: A story media can’t ignore; a positive image for the diaspora.

+

Showcase Companies: Get your logo on the backdrop, handouts on site, and a spot in our mini-agenda.

+

Networking ROI: 3 days of intros to investors, partners, and friends in Lisbon.

+ Web Summit: ~70k attendees, 1k speakers, 15 tracks +
+
+ Mockup of the Belarusian pavilion booth, showing a welcoming and professional space. +
+
+
+
+ +
+ + +
+
+
+

What You Get as a Sponsor

+

Choose your way to help — public or confidential.

+
+
+ +
+
+
+
€500+
+

Handouts on the booth + listing in the QR catalog.

+
+
+
+
+
+
+
€1,000+
+

Logo on the backdrop + priority for 1 partner ticket.

+
+
+
+
+
+
+
€2,500+
+

Co-exhibitor status with booth time and a ticket.

+
+
+
+
+
+
+
€5,000+
+

Hero sponsor with large logo and mentions.

+
+
+
+
+
+ Become a Sponsor +

All delegates agree to the Code of Conduct.

+
+
+
+ +
+ + + + + + + - + \ No newline at end of file diff --git a/media.php b/media.php new file mode 100644 index 0000000..a29658f --- /dev/null +++ b/media.php @@ -0,0 +1,95 @@ + + + + + + Media & Press | Belarusians Worldwide + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Media & Press

+

We welcome inquiries from journalists, bloggers, and content creators. Our story is one of unity, self-reliance, and the vibrant spirit of the Belarusian tech diaspora. Here you can find resources to help you cover our journey.

+ +
+
+
Press Kit
+

Our press kit includes official logos, photos, key facts, and talking points about the initiative. Download it to get started.

+ Download Press Kit (Coming Soon) +
+
+ +
+
+
Media Contact
+

For all media inquiries, including interview requests and quotes, please contact our media coordinator.

+

Email: press@belarusiansworldwide.com

+
+
+ +
+

Key Facts

+
    +
  • What: The first self-funded Belarusian pavilion at Web Summit.
  • +
  • Where: Web Summit, Lisbon, Portugal.
  • +
  • When: November 10-13, 2025.
  • +
  • Who: A community of Belarusian founders, engineers, investors, and creatives from around the world.
  • +
  • Funding: 100% community-funded. No state or institutional grants.
  • +
+
+ +
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/privacy.php b/privacy.php new file mode 100644 index 0000000..7b079d3 --- /dev/null +++ b/privacy.php @@ -0,0 +1,104 @@ + + + + + + Privacy Policy | Belarusians Worldwide + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Privacy Policy

+

Your privacy is important to us. This policy explains what data we collect and how we use it.

+ +
+ +

Information We Collect

+

We collect information you provide directly to us when you fill out a form on our website. This may include:

+
    +
  • Contact Information: Your name, email address, and company name.
  • +
  • Application Details: Information you provide when you apply to be a partner or volunteer, such as your skills and project descriptions.
  • +
  • Sponsorship Details: Information related to your sponsorship tier and amount.
  • +
+ +

How We Use Your Information

+

We use the information we collect for the following purposes:

+
    +
  • To process your applications and sign-ups.
  • +
  • To communicate with you about your submission and our event.
  • +
  • To manage our sponsorship program and acknowledge supporters.
  • +
  • To send periodic updates about the pavilion initiative (you can opt out at any time).
  • +
+ +

Data Sharing

+

We do not sell, trade, or otherwise transfer your personally identifiable information to outside parties. This does not include trusted third parties who assist us in operating our website or conducting our business, so long as those parties agree to keep this information confidential.

+

We may release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others' rights, property, or safety.

+ +

Data Security

+

We implement a variety of security measures to maintain the safety of your personal information when you submit it. All data is handled by our core organizing team.

+ +

Your Consent

+

By using our site, you consent to our web site privacy policy.

+ +

Changes to our Privacy Policy

+

If we decide to change our privacy policy, we will post those changes on this page.

+ +

Contacting Us

+

If there are any questions regarding this privacy policy, you may contact us at privacy@belarusiansworldwide.com.

+ +
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/sponsor.php b/sponsor.php new file mode 100644 index 0000000..e460a95 --- /dev/null +++ b/sponsor.php @@ -0,0 +1,210 @@ +New Sponsorship Submission +

A new sponsorship form has been submitted on the website.

+ +

Please follow up with them to confirm payment and sponsorship details.

+ "; + $textBody = " + New Sponsorship Submission + + Name/Company: {$name} + + Email: {$email} + + Sponsorship Tier/Amount: {$amount} + + Agreed to CoC: Yes + + "; + + // Send email + $to = null; // Use MAIL_TO from .env + $options = ['reply_to' => $email]; + $result = MailService::sendMail($to, $subject, $htmlBody, $textBody, $options); + + if (!empty($result['success'])) { + // Redirect to 'thanks' page on success + header("Location: thanks.php"); + exit; + } else { + // Log error and show a generic message + error_log("MailService Error: " . ($result['error'] ?? 'Unknown error')); + $form_error = 'Sorry, there was an error sending your message. Please try again later or contact us directly.'; + } + } +} +?> + + + + + + Sponsor the Pavilion | Belarusians Worldwide + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Sponsor the Pavilion

+

Your contribution directly funds the first-ever Belarusian pavilion at Web Summit. Please fill out the form below and follow the payment instructions. We'll be in touch to confirm your sponsorship.

+ +
+ +
+
+
+
Sponsorship Details
+ +
+ +
+

This is for testing purposes only — Flatlogic does not guarantee usage of the mail server. Please set up your own SMTP in .env (MAIL_/SMTP_ vars).

+

If you do not receive a confirmation, please check your spam folder.

+
+
+
+ + +
+
+ + +
For receipts and communication.
+
+
+ + +
+
+ + +
+ +
+
+
+
+ + +
+
+
+
Payment Instructions
+

After submitting the form, please use one of the methods below. Make sure the name on the transfer matches the name in the form.

+ +
+ +
Option 1: Bank Transfer (SEPA)
+
    +
  • Beneficiary: VSI "IMAGURU"
  • +
  • IBAN: LTXX XXXX XXXX XXXX XXXX
  • +
  • Bank: Revolut Bank UAB
  • +
  • SWIFT/BIC: REVOLT21
  • +
  • Reference: WS25 Pavilion - [Your Name]
  • +
+ +
+ +
Option 2: Cryptocurrency (USDT)
+

For crypto contributions, please send us an email after the transfer with the transaction hash.

+
    +
  • Network: TRC20 (Tron)
  • +
  • Address: TYourWalletAddressHere...
  • +
+ +
+ +

For questions or alternative payment methods, please contact us at pavalion@belarusiansworldwide.com.

+
+
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/thanks.php b/thanks.php new file mode 100644 index 0000000..7e13c8e --- /dev/null +++ b/thanks.php @@ -0,0 +1,73 @@ + + + + + + + Thank You! | Belarusians Worldwide + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Thank You!

+

Your submission has been received. We sincerely appreciate your support.

+
+

Please remember to complete your contribution using the payment instructions provided on the previous page. We will contact you shortly to confirm your sponsorship and discuss the next steps.

+ Back to Homepage +
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/volunteer.php b/volunteer.php new file mode 100644 index 0000000..11f6f9c --- /dev/null +++ b/volunteer.php @@ -0,0 +1,173 @@ +New Volunteer Sign-up +

A new volunteer has signed up through the website.

+ +

Please add them to the volunteer list and follow up with details.

+ "; + $textBody = " + New Volunteer Sign-up + + Full Name: {$full_name} + Email: {$email} + Skills/Interests: + {$skills} + + Availability: + {$availability} + + Agreed to CoC: Yes + "; + + // Send email + $to = null; // Use MAIL_TO from .env + $options = ['reply_to' => $email]; + $result = MailService::sendMail($to, $subject, $htmlBody, $textBody, $options); + + if (!empty($result['success'])) { + // Redirect to 'thanks' page on success + header("Location: thanks.php?from=volunteer"); + exit; + } else { + // Log error and show a generic message + error_log("MailService Error: " . ($result['error'] ?? 'Unknown error')); + $form_error = 'Sorry, there was an error sending your sign-up. Please try again later or contact us directly.'; + } + } +} +?> + + + + + + Volunteer | Belarusians Worldwide + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

Volunteer With Us

+

The pavilion is powered by our community. We need your help with booth shifts, setup, and networking at Night Summit. Sign up below to be a part of the team in Lisbon!

+ +
+
+
Volunteer Sign-up
+ +
+ +
+

This is for testing purposes only — Flatlogic does not guarantee usage of the mail server. Please set up your own SMTP in .env (MAIL_/SMTP_ vars).

+

If you do not receive a confirmation, please check your spam folder.

+
+
+
+
+ + +
+
+ + +
+
+
+ + +
Let us know what you're good at! (e.g., sales, social media, event setup, photography)
+
+
+ + +
When can you help? (e.g., specific days at Web Summit, pre-event tasks)
+
+
+ + +
+ +
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file