Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

67 changes: 23 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,57 +1,36 @@
# 🗳️ Reform UK Exposed — Tweet Map by Area
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).

This site helps you explore **tweets from the Reform UK Exposed Twitter account**, organised by **geographic area** and searchable by keyword.
## Getting Started

Built by volunteers at [Campaign Lab](https://campaignlab.uk), the goal is to make it easier for voters, journalists, and campaigners to see what Reform UK candidates and supporters are saying in public — all in one place.
First, run the development server:

👉 **Live site**: [https://yourusername.github.io/reform-uk-exposed](https://yourusername.github.io/reform-uk-exposed)
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

---
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

## 📦 What's in this project?
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

- 🔍 Filter tweets by **area**
- 🗣️ Search tweet content
- 🔗 Link back to original tweets
- 🖼️ Satirical image of Nigel Farage for fun (feel free to change it)
- 📊 Data comes from a live-updating **Google Sheet**
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

---
# 📊 Data Source
## Learn More

Tweets are collected and scraped from Reform UK exposed and structured by geography using the matching code and fact-checked by volunteers and stored in a google sheet
Each row includes:
- Area
- Tweet content
- Link to tweet
To learn more about Next.js, take a look at the following resources:

---
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

## 🚀 How to edit or contribute
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!

1. **Fork this repo**
2. Edit the `index.html` file
3. Commit your changes
4. Open a pull request
## Deploy on Vercel

To change the tweet dataset, update the Google Sheet, or fork this site and point it to your own.
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

---

## 🛠 Tech stack

- HTML + CSS (no framework)
- [PapaParse](https://www.papaparse.com/) for loading CSV from Google Sheets
- Hosted on **GitHub Pages**

---

## 🙃 Disclaimer

This project is intended as satire, public accountability, and digital transparency. All content is sourced from publicly available tweets. The site is not affiliated with Twitter, Reform UK, or any political party.

---

## ❤️ Credits

Created with love and concern by volunteers at [Campaign Lab](https://campaignlab.uk), a network of technologists and organisers supporting progressive politics through experimentation and open tools.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
Loading