From f05a528580193901a2c02014b4822aec29b8ae6a Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 11 Nov 2024 04:07:33 -0600 Subject: [PATCH] feat: moved some stuff around --- frontend/src/Pages/Platforms.elm | 6 +++--- frontend/src/Pages/Services.elm | 8 ++++---- frontend/static/mastodon.svg | 4 ---- frontend/static/{ => platforms}/discord.png | Bin frontend/static/{ => platforms}/mastodon.png | Bin frontend/static/{ => platforms}/peertube.png | Bin frontend/static/{ => services}/analysis.png | Bin frontend/static/{ => services}/debate.png | Bin frontend/static/{ => services}/nixos.png | Bin frontend/static/{ => services}/nutrition.png | Bin 10 files changed, 7 insertions(+), 11 deletions(-) delete mode 100644 frontend/static/mastodon.svg rename frontend/static/{ => platforms}/discord.png (100%) rename frontend/static/{ => platforms}/mastodon.png (100%) rename frontend/static/{ => platforms}/peertube.png (100%) rename frontend/static/{ => services}/analysis.png (100%) rename frontend/static/{ => services}/debate.png (100%) rename frontend/static/{ => services}/nixos.png (100%) rename frontend/static/{ => services}/nutrition.png (100%) diff --git a/frontend/src/Pages/Platforms.elm b/frontend/src/Pages/Platforms.elm index 46cf495..123a8e9 100644 --- a/frontend/src/Pages/Platforms.elm +++ b/frontend/src/Pages/Platforms.elm @@ -161,7 +161,7 @@ makeRow makeRowInput = platforms : List (Element msg) platforms = List.map makeRow - [ { logoImage = "mastodon.png" + [ { logoImage = "platforms/mastodon.png" , logoDescription = "mastodon logo" , platformsLink = "https://the-nutrivore.social/" , platformsTitle = "MASTODON" @@ -186,7 +186,7 @@ platforms = , platformsRecommendedClientLabel4 = "Official" , platformsRecommendedClientText4 = " (iOS)" } - , { logoImage = "peertube.png" + , { logoImage = "platforms/peertube.png" , logoDescription = "peertube logo" , platformsLink = "https://video.the-nutrivore.social/" , platformsTitle = "PEERTUBE" @@ -205,7 +205,7 @@ platforms = , platformsRecommendedClientLabel4 = "" , platformsRecommendedClientText4 = "" } - , { logoImage = "discord.png" + , { logoImage = "platforms/discord.png" , logoDescription = "discord logo" , platformsLink = "https://discord.gg/eeYQ2wJknS" , platformsTitle = "DISCORD" diff --git a/frontend/src/Pages/Services.elm b/frontend/src/Pages/Services.elm index 2d8989d..a17a111 100644 --- a/frontend/src/Pages/Services.elm +++ b/frontend/src/Pages/Services.elm @@ -143,28 +143,28 @@ makeRow makeRowInput = services : List (Element msg) services = List.map makeRow - [ { logoImage = "debate.png" + [ { logoImage = "services/debate.png" , logoDescription = "debate logo" , servicesLink = "https://the-nutrivore.social/" , servicesTitle = "DEBATE COACHING" , servicesRate = "$60/hr" , servicesDescription = "Participate in a structured course consisting of five one-hour modules, covering critical thinking, debate strategy, propositional logic, and more. Throughout the course you will receive both personalized and generalizable advice on how to improve your debate performance." } - , { logoImage = "analysis.png" + , { logoImage = "services/analysis.png" , logoDescription = "analysis logo" , servicesLink = "https://the-nutrivore.social/" , servicesTitle = "DEBATE ANALYSIS" , servicesRate = "$80/hr" , servicesDescription = "Participate in focused one-hour sessions wherein your own recorded debates are analyzed for constructive feedback and advice to help you improve as a debater. You may also participate in mock debates, staged debates, and other exercises to help you get more comfortable with debate and verbal confrontation." } - , { logoImage = "nutrition.png" + , { logoImage = "services/nutrition.png" , logoDescription = "nutrition logo" , servicesLink = "https://the-nutrivore.social/" , servicesTitle = "NUTRITION SCIENCE" , servicesRate = "$40/hr" , servicesDescription = "Participate in a one-hour Q&A session specifically to inquire about nutrition science. Ask questions about research design, methodology, epistemology, and study interpretation. Also, by participating you will also gain access to nutrition science interpretation cheat-sheets that will streamline and simply the research appraisal process." } - , { logoImage = "nixos.png" + , { logoImage = "services/nixos.png" , logoDescription = "debate logo" , servicesLink = "https://the-nutrivore.social/" , servicesTitle = "CUSTOM NIX BUILDS" diff --git a/frontend/static/mastodon.svg b/frontend/static/mastodon.svg deleted file mode 100644 index 87ec2c5..0000000 --- a/frontend/static/mastodon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/frontend/static/discord.png b/frontend/static/platforms/discord.png similarity index 100% rename from frontend/static/discord.png rename to frontend/static/platforms/discord.png diff --git a/frontend/static/mastodon.png b/frontend/static/platforms/mastodon.png similarity index 100% rename from frontend/static/mastodon.png rename to frontend/static/platforms/mastodon.png diff --git a/frontend/static/peertube.png b/frontend/static/platforms/peertube.png similarity index 100% rename from frontend/static/peertube.png rename to frontend/static/platforms/peertube.png diff --git a/frontend/static/analysis.png b/frontend/static/services/analysis.png similarity index 100% rename from frontend/static/analysis.png rename to frontend/static/services/analysis.png diff --git a/frontend/static/debate.png b/frontend/static/services/debate.png similarity index 100% rename from frontend/static/debate.png rename to frontend/static/services/debate.png diff --git a/frontend/static/nixos.png b/frontend/static/services/nixos.png similarity index 100% rename from frontend/static/nixos.png rename to frontend/static/services/nixos.png diff --git a/frontend/static/nutrition.png b/frontend/static/services/nutrition.png similarity index 100% rename from frontend/static/nutrition.png rename to frontend/static/services/nutrition.png