diff --git a/src/pages/sponsors.astro b/src/pages/sponsors.astro new file mode 100644 index 00000000..fc722ecb --- /dev/null +++ b/src/pages/sponsors.astro @@ -0,0 +1,360 @@ +--- +import Layout from "../layouts/Layout.astro" +import Heading from "../components/Heading.astro" +import Sponsors from "../components/Sponsors.astro" + +const title = "Sponsor DDEV" + +const individualTiers = [ + { + price: "$50", + name: "Supporting Sponsor", + description: + "Help fund more dedicated development time and project improvements.", + rewards: [ + "Sponsor badge on your GitHub profile", + "Extra support for ongoing development work", + ], + }, + { + price: "$25", + name: "Sponsor", + description: + "Show your support publicly and help strengthen the DDEV ecosystem.", + rewards: ["Sponsor badge on your GitHub profile"], + }, + { + price: "$5", + name: "Community Supporter", + description: + "For less than the cost of a monthly coffee, you can help make DDEV sustainable.", + rewards: ["Supports ongoing maintenance, bug fixes, and community support"], + }, +] + +const enterpriseTiers = [ + { + price: "$5,000", + name: "Sustainability Partner", + description: + "Help fund the full-time co-maintainer DDEV needs for long-term sustainability.", + rewards: [ + "Help fund a dedicated DDEV co-maintainer", + "Option to sponsor an employee to contribute substantially to DDEV", + "Strategic collaboration with DDEV maintainers", + ], + }, + { + price: "$2,000", + name: "Infrastructure Sponsor", + description: + "Help accelerate development, maintenance, and ecosystem improvements for teams depending on DDEV every day.", + rewards: [ + "Strategic collaboration opportunities", + "Direct communication channel with maintainers", + "Visibility as a major ecosystem supporter", + ], + }, + { + price: "$1,000", + name: "Strategic Sponsor", + description: + "Become a major supporter of the DDEV ecosystem with direct support access.", + rewards: [ + "DDEV Tip of the Day thanks you by name", + "DDEV joins your company chat app for help and support", + ], + }, + { + price: "$200", + name: "Priority Support Sponsor", + description: + "Ideal for teams and organizations that rely on DDEV in their workflows.", + rewards: ["Priority consideration for bug reports"], + }, + { + price: "$100", + name: "Featured Sponsor", + description: + "Get recognized as an organization helping sustain the future of DDEV.", + rewards: ["Logo or name in the DDEV README"], + }, +] +--- + + +
+
+
+ +
+
+ +
+
+
+

+ Enterprise Sponsors +

+ +

+ Sustain DDEV at the Organizational Level +

+ +

+ Built for companies and teams that depend on DDEV in production + workflows and want to invest in its long-term sustainability. +

+
+ +
+ { + enterpriseTiers.map((tier) => ( + + )) + } +
+
+
+ +
+
+
+

+ Individual Sponsors +

+ +

+ Support DDEV as an Individual +

+ +

+ Perfect for developers, freelancers, and community members who want + to help keep DDEV healthy and sustainable. +

+
+ +
+ { + individualTiers.map((tier) => ( + + )) + } +
+
+
+ +
+
+ +
+
+ +
+
+

+ Join our Current Sponsors +

+ +

+ Sponsorship helps keep the project + sustainable, and funds long-term + maintenance and development. +

+ +
+ +
+
+
+
+
\ No newline at end of file