From 65bdb7ece34bfbd1abb4dcaf43fb4fd1d491a14b Mon Sep 17 00:00:00 2001 From: Boid Date: Fri, 1 Nov 2024 21:15:43 -0400 Subject: [PATCH] ready to overwrite main --- eslint.config.mjs | 1 + public/mailchimp.html | 45 ++++++++++++++++++++++ src/css/app.sass | 15 ++++---- src/pages/IndexPage.vue | 4 ++ src/pages/TosPage.vue | 80 +++++++++++++++++++++++++++++++++++++++ src/router/routeData.json | 5 +++ 6 files changed, 143 insertions(+), 7 deletions(-) create mode 100644 public/mailchimp.html create mode 100644 src/pages/TosPage.vue diff --git a/eslint.config.mjs b/eslint.config.mjs index 31d68d2..1d721ab 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -33,6 +33,7 @@ export default ts.config( ], "@typescript-eslint/await-thenable": "error", "require-await": "warn", + "vue/multi-word-component-names": "off", }, }, eslintConfigPrettier, diff --git a/public/mailchimp.html b/public/mailchimp.html new file mode 100644 index 0000000..b15ee18 --- /dev/null +++ b/public/mailchimp.html @@ -0,0 +1,45 @@ +
+ + +
+
+
+

Subscribe

+ +
+
+ +
+ + +
+ +
+
+
+
+
+ + +
diff --git a/src/css/app.sass b/src/css/app.sass index f45fbc2..99c451a 100644 --- a/src/css/app.sass +++ b/src/css/app.sass @@ -8,10 +8,11 @@ p font-size: 15px margin-bottom: 0px color: white + text-align: left h1 font-size: 75px margin: 0px - font-family: gluten + font-family: Poppins color: white h2 font-size: 30px @@ -199,12 +200,12 @@ input[type="number"] justify-content: center align-items: center -p - font-size: 12px - line-height: 22px - margin: 0 - padding: 0 - text-align: center + p + font-size: 12px + line-height: 22px + margin: 0 + padding: 0 + text-align: center a color: #1a73e8 diff --git a/src/pages/IndexPage.vue b/src/pages/IndexPage.vue index d1e87c7..e6b40b0 100644 --- a/src/pages/IndexPage.vue +++ b/src/pages/IndexPage.vue @@ -21,6 +21,10 @@ q-page.full-height.full-width.bgimg h5 Earn points when someone purchases your images .centered.q-mt-md h5 Have fun exploring the site + .centered.q-mt-lg + h5 Join the mailing list to be updated on new features and events. + .centered + iframe(data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="/mailchimp.html" style="height: 300px; width:500px; max-width:100vw;").bg-dark-page .centered.q-mt-xl q-btn(type="a" href="https://twitter.com/fiddlart" icon="fa-brands fa-x-twitter" color="primary" flat) diff --git a/src/pages/TosPage.vue b/src/pages/TosPage.vue new file mode 100644 index 0000000..b9fd076 --- /dev/null +++ b/src/pages/TosPage.vue @@ -0,0 +1,80 @@ + diff --git a/src/router/routeData.json b/src/router/routeData.json index 09ebac9..eeb2536 100644 --- a/src/router/routeData.json +++ b/src/router/routeData.json @@ -73,5 +73,10 @@ "claim", "/claim/:claimShortId?", "ClaimPage" + ], + [ + "tos", + "/tos", + "TosPage" ] ]