diff --git a/src/components/Sponsor.jsx b/src/components/Sponsor.jsx new file mode 100644 index 0000000..ed991a4 --- /dev/null +++ b/src/components/Sponsor.jsx @@ -0,0 +1,41 @@ +import { motion } from "framer-motion"; + +import people from "../assets/images/stargazers/metrics.plugin.people.repository.svg"; +import { CheckArrowIcon } from "../assets/icons/CheckArrowIcon"; + +export const Sponsor = () => { + return ( +
+ +
+
+
+ Support the Project +

+ Sponsor Web X +

+

+ The Web X project is maintained by a team of hard-working dedicated developers. + Your sponsorship and donations helps us keep the project alive and ensures continued delivery of high-quality software to our users. +

+ +
+
+
+
+ Feature image 5 +
+
+
+
+
+ ); +}; diff --git a/src/pages/index.astro b/src/pages/index.astro index 44f523a..38f477d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,6 +7,7 @@ import { Features2 } from "../components/Features2.jsx"; import { Testimonials } from "../components/Testimonials.jsx"; import { FeaturesDiagonal } from "../components/FeaturesDiagonal.jsx"; import { Pricing } from "../components/Pricing.jsx"; +import { Sponsor } from "../components/Sponsor.jsx"; import { FAQ } from "../components/FAQ.jsx"; import { Brands } from "../components/Brands.jsx"; import { Blog } from "../components/Blog"; @@ -25,6 +26,7 @@ import "../styles/Diagonals.css"; +