|
| 1 | +import * as React from "react"; |
| 2 | +import PropTypes from "prop-types"; |
| 3 | +import { Layout } from "../components/common"; |
| 4 | + |
| 5 | +const Index = () => { |
| 6 | + return ( |
| 7 | + <Layout> |
| 8 | + <TopSection /> |
| 9 | + <ImpactsAndProgress /> |
| 10 | + </Layout> |
| 11 | + ); |
| 12 | +}; |
| 13 | + |
| 14 | +export default Index; |
| 15 | + |
| 16 | +function TopSection() { |
| 17 | + return ( |
| 18 | + <div className="bg-bg-black"> |
| 19 | + <div className="px-4 py-6 md:py-16 md:text-lg responsive-container"> |
| 20 | + <h1 className="text-white text-2xl font-semibold md:text-3xl"> |
| 21 | + Community powered and funded |
| 22 | + </h1> |
| 23 | + <p className=" text-gray-400 mt-3"> |
| 24 | + At the Internet Freedom Foundation, we fight with courage and strategy |
| 25 | + to advance liberty, equality, fraternity and social justice in the |
| 26 | + digital age. |
| 27 | + </p> |
| 28 | + <p className=" text-gray-400 mt-2"> |
| 29 | + We sustain IFF on a large community of volunteers and donations by |
| 30 | + ordinary Indians like you. IFF makes monthly disclosures and quarterly |
| 31 | + calls and is rated by Guidestar and Credibility Alliance. Join IFF and |
| 32 | + help support people over power and platforms. |
| 33 | + </p> |
| 34 | + <p className=" text-gray-400 mt-2"> |
| 35 | + We follow radical{" "} |
| 36 | + <span className="text-iff-orange">Transparency and Disclosures</span> |
| 37 | + </p> |
| 38 | + <div className="mt-6"> |
| 39 | + <button className="btn">Donate</button> |
| 40 | + <button className="btn-secondary ml-4">Subscribe</button> |
| 41 | + </div> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + ); |
| 45 | +} |
| 46 | + |
| 47 | +function ImpactsAndProgress() { |
| 48 | + return ( |
| 49 | + <div className="px-4 py-6 md:py-16 md:text-lg text-gray-500 flex-col lg:flex-row gap-8 responsive-container flex"> |
| 50 | + <div className=""> |
| 51 | + <h2 className=" text-gray-900 text-xl md:text-2xl font-semibold mb-2"> |
| 52 | + India’s digital rights under threat |
| 53 | + </h2> |
| 54 | + <p> |
| 55 | + While India is racing towards a tech revolution, there is a growing |
| 56 | + concentration of power and profit that is eroding our fundamental |
| 57 | + rights. We are witnessing a rise in web censorship, internet |
| 58 | + shutdowns, surveillance and fresh challenges by artificial |
| 59 | + intelligence. There is no denying the simple fact: our digital |
| 60 | + liberties are under constant threat. Technology today is often being |
| 61 | + seen not only as a friend, but as a Big Brother! It’s time to fight |
| 62 | + back. |
| 63 | + </p> |
| 64 | + <button className="btn-secondary mt-4">IFF’s impact</button> |
| 65 | + </div> |
| 66 | + |
| 67 | + <div className=""> |
| 68 | + <h2 className="text-gray-900 text-xl md:text-2xl font-semibold mb-2"> |
| 69 | + Public advocacy, public victories |
| 70 | + </h2> |
| 71 | + <p> |
| 72 | + We are born out of the net neutrality, SaveTheInternet.in movement. |
| 73 | + Our campaigning roots tie in with policy expertise. IFF’s staff and |
| 74 | + volunteers weave digital literacy campaigns and special projects. Such |
| 75 | + advocacy channels the power of an informed community towards |
| 76 | + government institutions. When that fails, we have a proven record of |
| 77 | + strategic litigation. We achieve victories with collaboration, |
| 78 | + strategy, and rigour. |
| 79 | + </p> |
| 80 | + <button className="btn-secondary mt-4">IFF’s progress</button> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + ); |
| 84 | +} |
| 85 | + |
0 commit comments