├── .gitignore ├── README.md ├── components └── meta.js ├── package-lock.json ├── package.json ├── pages ├── _app.js ├── _document.js └── index.js ├── public └── favicon.ico ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | 21 | # debug 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | 26 | # local env files 27 | .env.local 28 | .env.development.local 29 | .env.test.local 30 | .env.production.local 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🖌 collab-hub 2 | 3 | A platform for students at GEMS to collaborate on art virtually. They can share your artwork with the entire school as well as share remixes of works done by your peers at school. 4 | 5 | Built for Arts Week 2020 using Next.js and Geist UI. 6 | -------------------------------------------------------------------------------- /components/meta.js: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | 3 | export default ({ 4 | name = "Arts Week 2020", 5 | title = "Collaboration Hub", 6 | description = `Pulled apart by COVID-19, let's come together to collaborate on art virtually. 7 | Here you can share your artwork with the entire school 8 | as well as share remixes of works done by your peers at school.`, 9 | image = "https://cloud-8r7qf7pou.vercel.app/collaboration_hub-2.png", 10 | url = "https://collab-hub.vercel.app", 11 | }) => ( 12 |
13 |63 | On COLLABORATION HUB, people don’t just post their own stuff -- we 64 | make things together. Whether you’re a beginner or an expert, 65 | whether you’re into writing, film, music, or any other kind of art, 66 | you’ll find this platform a welcoming and positive place to be your 67 | creative self. 68 |
69 |71 | The COLLABORATION HUB is a new, interactive, sharing platform that 72 | allows students to be inspired by the work of others; REMIX and 73 | generate their own work; and share it on the HUB for others to be 74 | inspired further. 75 |
76 |77 | This is an ARTS WEEK launch where everyone from artists, musicians, 78 | actors, singers, and dancers, to designers, editors, photographers, 79 | writers and coders can have a go. Just scroll through the samples in 80 | the gallery and remix it to make something (anything!) new from it. 81 |
82 |TIMELINE:
83 |84 | The ARTS WEEK challenge will end on Friday 25 September the best 85 | collaborative creations will be shared in an assembly showcase and 86 | social media. 87 |
88 |89 | Make sure you check emails and Google Currents for updates and 90 | ideas. We'll be featuring awesome contributions and REMIXES as we 91 | receive them and post them on this site, so make sure to check back 92 | to see what’s new. 93 |
94 |Happy COLLABORATING and REMIXING!
95 |It's that easy!
108 |See an image you like (painting, photograph)? You could…
109 |115 | See a performance video that interests you (drama, dance)? You 116 | could… 117 |
118 |See some cryptic CODE sequence for a piece of music? You could…
124 |Hear music you like?? You could…
131 |140 | The options are endless...what can YOU do? 141 |
142 |210 |
292 |
374 |
456 |
538 |
620 |
702 |