@dcrackel/meyersquaredui 1.0.86 → 1.0.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/meyersquaredui",
3
3
  "private": false,
4
- "version": "1.0.86",
4
+ "version": "1.0.88",
5
5
  "type": "module",
6
6
  "main": "dist/meyersquaredui.cjs.js",
7
7
  "module": "dist/meyersquaredui.esm.js",
package/src/index.js CHANGED
@@ -24,6 +24,7 @@ export { default as EventListCard } from './stories/Organisms/Cards/EventListCar
24
24
  export { default as FencerCard } from './stories/Organisms/Cards/FencerCard/FencerCard.vue'
25
25
  export { default as FencerListCard } from './stories/Organisms/Cards/FencerListCard/FencerListCard.vue'
26
26
  export { default as PhotoCard } from './stories/Organisms/Cards/PhotoCard/PhotoCard.vue'
27
+ export { default as RatingSystemAnnouncement } from './stories/Organisms/Cards/RatingSystem/RatingSystemAnnouncement.vue'
27
28
  export { default as SocialMediaLinkCard } from './stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.vue'
28
29
  export { default as TournamentCard } from './stories/Organisms/Cards/TournamentCard/TournamentCard.vue'
29
30
  export { default as TournamentDetails } from './stories/Organisms/Cards/TournamentDetails/TournamentDetails.vue'
@@ -0,0 +1,16 @@
1
+ import RatingSystemAnnouncement from './RatingSystemAnnouncement.vue';
2
+
3
+ export default {
4
+ title: 'Organisms/Cards/RatingSystemAnnouncement',
5
+ component: RatingSystemAnnouncement,
6
+ };
7
+
8
+ const Template = (args) => ({
9
+ components: { RatingSystemAnnouncement },
10
+ setup() {
11
+ return { args };
12
+ },
13
+ template: '<RatingSystemAnnouncement />',
14
+ });
15
+
16
+ export const Default = Template.bind({});
@@ -0,0 +1,42 @@
1
+ <template>
2
+ <section class="w-full flex justify-center mx-auto mt-10 mb-20">
3
+ <section>
4
+ <div class="max-w-[1200px] w-full flex justify-center mx-auto mt-8 flex-col">
5
+ <div class="w-full flex py-4 md:pb-10 ml-2 md:ml-0 mb-4 justify-center">
6
+ <BaseText color="primary" size="xl" tag="h3" weight="bold">
7
+ Coming Soon: The M² Fencing Rating System!
8
+ </BaseText>
9
+ </div>
10
+ <div class="flex">
11
+ <div class="w-1/2 flex justify-end mr-10">
12
+ <img src="https://meyersquaredimages.com/images/trophy.png" alt="Rating System Announcement" class="w-96 h-96 rounded-lg" />
13
+ </div>
14
+ <div class="w-1/2">
15
+ <BaseText color="primary" size="md" tag="p" weight="normal" class="w-3/4">
16
+ Our new M² Rating System will give you deeper insights into your performance, track your progress,
17
+ and help you see how you measure up against competitors nationwide.<br><br>
18
+ <b>Key Advantages:</b><br>
19
+ It's a rating system, not a ranking system. You won’t lose progress just because others improve.<br><br>
20
+ Ratings are earned by competing in tournaments. Once earned, a rating stays with you for four years, after
21
+ which it gradually decreases by one level every four years. Having a bad tournament, or even a bad year doesn't cost you your rating.
22
+ <br><br>
23
+ The more competitive the tournament, the greater the rewards.
24
+ <br><br>
25
+ Stay tuned for more details!
26
+ </BaseText>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </section>
31
+ </section>
32
+ </template>
33
+
34
+ <script>
35
+ import BaseText from "../../../Atoms/BaseText/BaseText.vue";
36
+
37
+ export default {
38
+ name: "RatingSystemAnnouncement",
39
+ components: {BaseText},
40
+ };
41
+ </script>
42
+ >
@@ -22,7 +22,7 @@ const Template = (args) => ({
22
22
 
23
23
  export const DefaultHeroBanner = Template.bind({});
24
24
  DefaultHeroBanner.args = {
25
- imageSrc: 'https://meyersquared.com/images/banners/largebanner01.jpg',
25
+ imageSrc: 'https://meyersquaredimages.com/images/banners/largebanner01.jpg',
26
26
  title: 'Find your next HEMA Touranment!',
27
27
  description: '',
28
28
  buttonLabel: 'Get Started',
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <section id="hero" class="relative w-full h-3/4 flex justify-center bg-primary md:m-0 mt-6 " :style="backgroundStyle">
2
+ <section id="hero" class="relative w-full md:min-h-[500px] flex justify-center bg-primary md:m-0 mt-6 " :style="backgroundStyle">
3
3
  <!-- Spacer (Left) -->
4
4
  <div class="hidden md:block w-[150px] bg-primary border-b border-lineGrey flex-shrink-0"></div>
5
5
 
@@ -19,7 +19,7 @@ const Template = (args, { argTypes }) => ({
19
19
 
20
20
  export const Default = Template.bind({});
21
21
  Default.args = {
22
- imageSrc: 'https://meyersquared.com/images/banners/thinbanner01.jpg',
22
+ imageSrc: 'https://meyersquaredimages.com/images/banners/thinbanner02.jpg',
23
23
  title: 'Find Tournaments',
24
24
  description: 'Find your next HEMA Tournaments near you!',
25
25
  };
@@ -19,17 +19,19 @@
19
19
  imageUrl="https://meyersquared.com/images/banners/largebanner03.jpg"
20
20
  @handleButtonClick="changePage('clubs')"
21
21
  />
22
- <GridLayout
23
- :cardComponent="FencerCard"
24
- :items="topFencers"
25
- :maxColumns="5"
26
- :mobileHorizontal="mobileHorizontal"
27
- :isLoading="topFencersIsLoading"
28
- moreButtonLabel="Leaderboards"
29
- title="Top Fencers"
30
- @grid-click="changePage('leaderboard')"
31
- @grid-card-click="handleGridCardClick"
32
- />
22
+
23
+ <RatingSystemAnnouncement />
24
+ <!-- <GridLayout-->
25
+ <!-- :cardComponent="FencerCard"-->
26
+ <!-- :items="topFencers"-->
27
+ <!-- :maxColumns="5"-->
28
+ <!-- :mobileHorizontal="mobileHorizontal"-->
29
+ <!-- :isLoading="topFencersIsLoading"-->
30
+ <!-- moreButtonLabel="Leaderboards"-->
31
+ <!-- title="Top Fencers"-->
32
+ <!-- @grid-click="changePage('leaderboard')"-->
33
+ <!-- @grid-card-click="handleGridCardClick"-->
34
+ <!-- />-->
33
35
  <DoubleButtonBanner title="How Does Meyer Squared work?" button-label-two="Run a tournament"
34
36
  button-label-one="Submit Results"
35
37
  @handle-button-click-one="changePage('submitresults')"
@@ -64,10 +66,14 @@ import DoubleButtonBanner from "../../Organisms/SectionBanners/DoubleButtonBanne
64
66
  import Footer from "../../Organisms/Footer/Footer.vue";
65
67
  import ScrollNav from "../../Organisms/Headers/ScrollNav/ScrollNav.vue";
66
68
  import {markRaw} from 'vue';
69
+ import BaseText from "../../Atoms/BaseText/BaseText.vue";
70
+ import RatingSystemAnnouncement from "../../Organisms/Cards/RatingSystem/RatingSystemAnnouncement.vue";
67
71
 
68
72
  export default {
69
73
  name: 'HomePage',
70
74
  components: {
75
+ RatingSystemAnnouncement,
76
+ BaseText,
71
77
  Footer,
72
78
  DoubleButtonBanner,
73
79
  SingleButtonBanner,