From fbe6b68a405212143f93dcee1f3e775a6860871e Mon Sep 17 00:00:00 2001 From: V-T-Soorea Date: Sun, 31 May 2020 12:55:28 +0530 Subject: [PATCH 1/2] Music page added --- client/src/pages/events_page/music.js | 99 +++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 client/src/pages/events_page/music.js diff --git a/client/src/pages/events_page/music.js b/client/src/pages/events_page/music.js new file mode 100644 index 0000000..9ca9a58 --- /dev/null +++ b/client/src/pages/events_page/music.js @@ -0,0 +1,99 @@ +import React from 'react'; +import styled from 'styled-components'; + +import EventHeader from "./../components/event_header/event_header"; +import EventTitle from "./../components/events_title/event_title"; +import EventDesc from "./../components/events_content/events_content"; +import RegisterButton from "./../components/register_button/register_button"; + +const Page = styled.div` + display : flex; + flex-direction : column; +`; + +var musicTitle1,musicTitle2; +if(window.screen.width < 479){ + musicTitle1 = "TEAM & SOLO"; + musicTitle2 = ""; +} +else if(window.screen.width >= 479){ + musicTitle1 = "TEAM &"; + musicTitle2 = "INDIVIDUAL" +}; + + + +const pinkTextContent = [ + + " rock enthusiasts", + " solo event", + " Indian or Western", + " local Hip-Hop culture", + " semi-pro rock band competitions", + " pure music", + " Acoustic Covers" +]; + +const content = [ + + "One of the most anticipated events in WAVES, this is the grand stage for all" + + , + + " and budding artists of the country. With all the amazing music and the Led Zeppelin vibe the participants truly bring out the amazing flare of all the greats." + + , + + + "This is a" + , + + " under Music category in which participants use their vocal abilities to compete. The song can be " + + , + + "All of us have heard the songs of Panjabi, Divine, Raftaar. Well get ready to experience the" + , + + ", this Waves. For the first time ever, we present to you the Rapsody, a showdown for all rap enthusiasts." + + , + + "One of the most grandiose" + + , + + " in the country. Alumni of the likes of Zygnema, The Family Cheese, Knight Shades, and Inner Sanctum. Bringing you enticing opportunities to showcase your talents, Searock is back with its 15th iteration this fall. Register here." + + , + + "If you wanna listen to" + + , + + " or for a delightful experience of musicians, join us in Silence Of The Amps, where you can listen to the" + , + + "of your favorite artists.\"Music that is acoustic, unwired, unplugged is it\'s most purest form\"-Craig Conley" +]; + +const HeaderText1 = "INDIANROCKJUKEBOXSILENCEOFTHEAMPSINDIANROCKSEAROCKRAPSODY"; +const HeaderText2 = "RAPSODYSILENCEOFTHEAMPSINDIANROCKJUKEBOXINDIANBOXSEAROCK"; + +function Music() { + return ( + + + + + + + + + + + + ); +} + +export default Music; \ No newline at end of file From 32ae7aada3ca8f954e0fa6c8b93b63c2ec9cf370 Mon Sep 17 00:00:00 2001 From: V-T-Soorea Date: Sun, 31 May 2020 13:22:48 +0530 Subject: [PATCH 2/2] Quiz page --- client/src/pages/events_page/music.js | 99 --------------------------- client/src/pages/events_page/quiz.js | 69 +++++++++++++++++++ 2 files changed, 69 insertions(+), 99 deletions(-) delete mode 100644 client/src/pages/events_page/music.js create mode 100644 client/src/pages/events_page/quiz.js diff --git a/client/src/pages/events_page/music.js b/client/src/pages/events_page/music.js deleted file mode 100644 index 9ca9a58..0000000 --- a/client/src/pages/events_page/music.js +++ /dev/null @@ -1,99 +0,0 @@ -import React from 'react'; -import styled from 'styled-components'; - -import EventHeader from "./../components/event_header/event_header"; -import EventTitle from "./../components/events_title/event_title"; -import EventDesc from "./../components/events_content/events_content"; -import RegisterButton from "./../components/register_button/register_button"; - -const Page = styled.div` - display : flex; - flex-direction : column; -`; - -var musicTitle1,musicTitle2; -if(window.screen.width < 479){ - musicTitle1 = "TEAM & SOLO"; - musicTitle2 = ""; -} -else if(window.screen.width >= 479){ - musicTitle1 = "TEAM &"; - musicTitle2 = "INDIVIDUAL" -}; - - - -const pinkTextContent = [ - - " rock enthusiasts", - " solo event", - " Indian or Western", - " local Hip-Hop culture", - " semi-pro rock band competitions", - " pure music", - " Acoustic Covers" -]; - -const content = [ - - "One of the most anticipated events in WAVES, this is the grand stage for all" - - , - - " and budding artists of the country. With all the amazing music and the Led Zeppelin vibe the participants truly bring out the amazing flare of all the greats." - - , - - - "This is a" - , - - " under Music category in which participants use their vocal abilities to compete. The song can be " - - , - - "All of us have heard the songs of Panjabi, Divine, Raftaar. Well get ready to experience the" - , - - ", this Waves. For the first time ever, we present to you the Rapsody, a showdown for all rap enthusiasts." - - , - - "One of the most grandiose" - - , - - " in the country. Alumni of the likes of Zygnema, The Family Cheese, Knight Shades, and Inner Sanctum. Bringing you enticing opportunities to showcase your talents, Searock is back with its 15th iteration this fall. Register here." - - , - - "If you wanna listen to" - - , - - " or for a delightful experience of musicians, join us in Silence Of The Amps, where you can listen to the" - , - - "of your favorite artists.\"Music that is acoustic, unwired, unplugged is it\'s most purest form\"-Craig Conley" -]; - -const HeaderText1 = "INDIANROCKJUKEBOXSILENCEOFTHEAMPSINDIANROCKSEAROCKRAPSODY"; -const HeaderText2 = "RAPSODYSILENCEOFTHEAMPSINDIANROCKJUKEBOXINDIANBOXSEAROCK"; - -function Music() { - return ( - - - - - - - - - - - - ); -} - -export default Music; \ No newline at end of file diff --git a/client/src/pages/events_page/quiz.js b/client/src/pages/events_page/quiz.js new file mode 100644 index 0000000..8effeec --- /dev/null +++ b/client/src/pages/events_page/quiz.js @@ -0,0 +1,69 @@ +import React from 'react'; +import styled from 'styled-components'; + +import EventHeader from "./../components/event_header/event_header"; +import EventTitle from "./../components/events_title/event_title"; +import EventDesc from "./../components/events_content/events_content"; +import RegisterButton from "./../components/register_button/register_button"; + +const Page = styled.div` + display : flex; + flex-direction : column; +`; + +var quizTitle1,quizTitle2; +if(window.screen.width < 479){ + quizTitle1 = "CONTESTS"; + quizTitle2 = ""; +} +else if(window.screen.width >= 479){ + quizTitle1 = "CON"; + quizTitle2 = "TESTS" +}; + + + +const pinkTextContent = [ + + // " rock enthusiasts", + // " solo event", + // " Indian or Western", + // " local Hip-Hop culture", + // " semi-pro rock band competitions", + // " pure music", + // " Acoustic Covers" +]; + +const content = [ + + "“The fifth Grand Slam of the year.”" + + , + + "“There is no God here.”" + + , + + + "The Travel and Living Quiz - “How far do you think you can go?”" +]; + +const HeaderText1 = "WAVESOPENTHEVICESQUIZTHEVOYAGEQUIZTHEVICESQUIZWAVESOPENTHEVOYAGEQUIZ"; +const HeaderText2 = "THEVOYAGEQUIZWAVESOPENTHEVOYAGEQUIZTHEVICESQUIZWAVESOPENTHEVICESQUIZ"; + + +function Quiz() { + return ( + + + + + + + + + + ); +} + +export default Quiz; \ No newline at end of file