@dcrackel/meyersquaredui 1.0.42 → 1.0.44

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.
Files changed (73) hide show
  1. package/dist/meyersquaredui.es.js +634 -515
  2. package/dist/meyersquaredui.umd.js +1 -1
  3. package/package.json +4 -3
  4. package/src/index.js +1 -1
  5. package/src/mocks/getAllClubs.js +106 -0
  6. package/src/mocks/getClubById.js +130 -0
  7. package/src/mocks/getFencersByWeapon.js +2167 -0
  8. package/src/mocks/getTouranmentDetailsMock.js +92 -0
  9. package/src/stories/Atoms/BaseButton/BaseButton.vue +5 -3
  10. package/src/stories/Atoms/BaseText/BaseText.vue +1 -1
  11. package/src/stories/Atoms/Icon/Icon.vue +4 -2
  12. package/src/stories/Atoms/InputField/InputField.stories.js +28 -9
  13. package/src/stories/Atoms/InputField/InputField.vue +20 -2
  14. package/src/stories/Molecules/Calendar/Calendar.stories.js +39 -0
  15. package/src/stories/Molecules/Calendar/Calendar.vue +110 -0
  16. package/src/stories/Molecules/DropDowns/BasicDropDown.stories.js +31 -0
  17. package/src/stories/Molecules/DropDowns/BasicDropDown.vue +78 -0
  18. package/src/stories/Molecules/MapBox/MapBox.stories.js +30 -0
  19. package/src/stories/Molecules/MapBox/MapBox.vue +67 -0
  20. package/src/stories/Molecules/SearchBox/SearchBox.vue +2 -1
  21. package/src/stories/Molecules/SearchBox/Searchbox.stories.js +1 -1
  22. package/src/stories/Organisms/Cards/ArticleCard/ArticleCard.vue +8 -3
  23. package/src/stories/Organisms/Cards/ClubListCard/CLubListCard.stories.js +31 -0
  24. package/src/stories/Organisms/Cards/ClubListCard/ClubListCard.vue +72 -0
  25. package/src/stories/Organisms/Cards/ClubMember/ClubMember.stories.js +40 -0
  26. package/src/stories/Organisms/Cards/ClubMember/ClubMember.vue +56 -0
  27. package/src/stories/Organisms/Cards/EventListCard/EventListCard.stories.js +38 -0
  28. package/src/stories/Organisms/Cards/EventListCard/EventListCard.vue +64 -0
  29. package/src/stories/Organisms/Cards/FencerCard/FencerCard.vue +9 -10
  30. package/src/stories/Organisms/Cards/FencerListCard/FencerListCard.stories.js +30 -0
  31. package/src/stories/Organisms/Cards/FencerListCard/FencerListCard.vue +86 -0
  32. package/src/stories/Organisms/Cards/PhotoCard/PhotoCard.stories.js +28 -0
  33. package/src/stories/Organisms/Cards/PhotoCard/PhotoCard.vue +18 -0
  34. package/src/stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.stories.js +40 -0
  35. package/src/stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.vue +54 -0
  36. package/src/stories/Organisms/Cards/TournamentCard/TournamentCard.stories.js +1 -1
  37. package/src/stories/Organisms/Cards/TournamentCard/TournamentCard.vue +9 -1
  38. package/src/stories/Organisms/Cards/TournamentDetails/TournamentDetails.stories.js +35 -0
  39. package/src/stories/Organisms/Cards/TournamentDetails/TournamentDetails.vue +59 -0
  40. package/src/stories/Organisms/Cards/TournamentListCard/TournamentListCard.stories.js +26 -0
  41. package/src/stories/Organisms/Cards/TournamentListCard/TournamentListCard.vue +103 -0
  42. package/src/stories/Organisms/Column/HostColumn.stories.js +39 -0
  43. package/src/stories/Organisms/Column/HostColumn.vue +105 -0
  44. package/src/stories/Organisms/GridLayout/GridLayout.vue +36 -6
  45. package/src/stories/Organisms/Headers/ClubHeader/ClubHeader.stories.js +21 -0
  46. package/src/stories/Organisms/Headers/ClubHeader/ClubHeader.vue +58 -0
  47. package/src/stories/Organisms/Headers/LeaderboardHeader/LeaderboardHeader.stories.js +29 -0
  48. package/src/stories/Organisms/Headers/LeaderboardHeader/LeaderboardHeader.vue +59 -0
  49. package/src/stories/Organisms/Headers/{Header.stories.js → PageHeader/PageHeader.stories.js} +2 -2
  50. package/src/stories/Organisms/Headers/PageHeader/PageHeader.vue +101 -0
  51. package/src/stories/Organisms/Headers/TournamentHeader/TournamentHeader.stories.js +34 -0
  52. package/src/stories/Organisms/Headers/TournamentHeader/TournamentHeader.vue +73 -0
  53. package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.stories.js +3 -3
  54. package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.vue +1 -1
  55. package/src/stories/Organisms/HeroBanners/TournamentDetails/TournamentDetailsBanner.stories.js +39 -0
  56. package/src/stories/Organisms/HeroBanners/TournamentDetails/TournamentDetailsBanner.vue +129 -0
  57. package/src/stories/Organisms/HeroBanners/Tournaments/TournamentBanner.stories.js +25 -0
  58. package/src/stories/Organisms/HeroBanners/Tournaments/TournamentBanner.vue +79 -0
  59. package/src/stories/Organisms/SectionBanners/DoubleButtonBanner/DoubleButtonBanner.vue +4 -0
  60. package/src/stories/Organisms/SectionBanners/SingleButtonBanner/SingleButtonBanner.vue +1 -1
  61. package/src/stories/Templates/ClubDetailPage/ClubDetailPage.stories.js +43 -0
  62. package/src/stories/Templates/ClubDetailPage/ClubDetailPage.vue +127 -0
  63. package/src/stories/Templates/ClubListPage/ClubListPage.stories.js +43 -0
  64. package/src/stories/Templates/ClubListPage/ClubListPage.vue +84 -0
  65. package/src/stories/Templates/HomePage/HomePage.stories.js +6 -6
  66. package/src/stories/Templates/HomePage/HomePage.vue +20 -13
  67. package/src/stories/Templates/Leaderboard/Leaderboard.stories.js +43 -0
  68. package/src/stories/Templates/Leaderboard/Leaderboard.vue +93 -0
  69. package/src/stories/Templates/TournamentDetailPage/TournamentDetail.stories.js +32 -0
  70. package/src/stories/Templates/TournamentDetailPage/TournamentDetailPage.vue +121 -0
  71. package/src/stories/Templates/TournamentListPage/TournamentListPage.stories.js +41 -0
  72. package/src/stories/Templates/TournamentListPage/TournamentListPage.vue +91 -0
  73. package/src/stories/Organisms/Headers/Header.vue +0 -62
@@ -1,16 +1,16 @@
1
- import { openBlock as m, createBlock as L, resolveDynamicComponent as T, normalizeClass as C, withCtx as a, renderSlot as V, createElementBlock as f, resolveComponent as u, createElementVNode as t, createVNode as s, createTextVNode as i, toDisplayString as b, mergeProps as _, Fragment as A, normalizeStyle as S, createCommentVNode as w, createStaticVNode as E, withModifiers as Y, renderList as N } from "vue";
2
- const p = (o, e) => {
3
- const r = o.__vccOpts || o;
1
+ import { openBlock as m, createBlock as G, resolveDynamicComponent as T, normalizeClass as v, withCtx as n, renderSlot as N, createElementBlock as g, resolveComponent as u, createElementVNode as t, createVNode as r, createTextVNode as i, toDisplayString as f, withModifiers as F, Fragment as A, renderList as K, createCommentVNode as x, normalizeStyle as k, createStaticVNode as E, markRaw as j } from "vue";
2
+ const y = (s, e) => {
3
+ const o = s.__vccOpts || s;
4
4
  for (const [h, c] of e)
5
- r[h] = c;
6
- return r;
7
- }, D = {
5
+ o[h] = c;
6
+ return o;
7
+ }, _ = {
8
8
  name: "BaseText",
9
9
  props: {
10
10
  tag: {
11
11
  type: String,
12
12
  default: "p",
13
- validator: (o) => ["h1", "h2", "h3", "h4", "h5", "h6", "p", "span", "div"].includes(o)
13
+ validator: (s) => ["h1", "h2", "h3", "h4", "h5", "h6", "p", "span", "div"].includes(s)
14
14
  },
15
15
  size: {
16
16
  type: String,
@@ -22,17 +22,17 @@ const p = (o, e) => {
22
22
  },
23
23
  hoverColor: {
24
24
  type: String,
25
- default: ""
25
+ default: null
26
26
  },
27
27
  weight: {
28
28
  type: String,
29
29
  default: "normal",
30
- validator: (o) => ["thin", "light", "normal", "semibold", "bold"].includes(o)
30
+ validator: (s) => ["thin", "light", "normal", "semibold", "bold"].includes(s)
31
31
  }
32
32
  },
33
33
  computed: {
34
34
  textClasses() {
35
- const o = {
35
+ const s = {
36
36
  xs: "text-xs",
37
37
  sm: "text-sm",
38
38
  md: "lg:text-base",
@@ -48,25 +48,25 @@ const p = (o, e) => {
48
48
  normal: "font-normal font-[400]",
49
49
  semibold: "font-semibold font-[600]",
50
50
  bold: "font-bold font-[700]"
51
- }, r = this.hoverColor ? ` hover:text-${this.hoverColor}` : "";
51
+ }, o = this.hoverColor ? ` hover:text-${this.hoverColor}` : "";
52
52
  return `${this.size.split(" ").map((c) => {
53
- const [l, n] = c.includes(":") ? c.split(":") : [null, c];
54
- return l ? `${l}:${o[n]}` : o[n];
55
- }).filter(Boolean).join(" ")} ${e[this.weight]} text-${this.color} ${r} font-raleway`;
53
+ const [l, a] = c.includes(":") ? c.split(":") : [null, c];
54
+ return l ? `${l}:${s[a]}` : s[a];
55
+ }).filter(Boolean).join(" ")} ${e[this.weight]} text-${this.color} ${o} font-raleway`;
56
56
  }
57
57
  }
58
58
  };
59
- function U(o, e, r, h, c, l) {
60
- return m(), L(T(r.tag), {
61
- class: C(l.textClasses)
59
+ function D(s, e, o, h, c, l) {
60
+ return m(), G(T(o.tag), {
61
+ class: v(l.textClasses)
62
62
  }, {
63
- default: a(() => [
64
- V(o.$slots, "default")
63
+ default: n(() => [
64
+ N(s.$slots, "default")
65
65
  ]),
66
66
  _: 3
67
67
  }, 8, ["class"]);
68
68
  }
69
- const x = /* @__PURE__ */ p(D, [["render", U]]), M = {
69
+ const w = /* @__PURE__ */ y(_, [["render", D]]), U = {
70
70
  name: "Icon",
71
71
  props: {
72
72
  icon: {
@@ -76,17 +76,17 @@ const x = /* @__PURE__ */ p(D, [["render", U]]), M = {
76
76
  color: {
77
77
  type: String,
78
78
  default: "primary",
79
- validator: (o) => ["primary", "secondary", "accent"].includes(o)
79
+ validator: (s) => ["primary", "secondary", "accent"].includes(s)
80
80
  },
81
81
  size: {
82
82
  type: String,
83
83
  default: "md",
84
- validator: (o) => ["xs", "sm", "md", "lg", "xl", "2xl", "3xl"].includes(o)
84
+ validator: (s) => ["xs", "sm", "md", "lg", "xl", "2xl", "3xl", "4xl", "5xl"].includes(s)
85
85
  },
86
86
  type: {
87
87
  type: String,
88
88
  default: "fa-solid",
89
- validator: (o) => ["fa-thin", "fa-sharp"].includes(o)
89
+ validator: (s) => ["fa-thin", "fa-sharp", "fa-kit", "fa-brands", "fa-solid", "fa-regular"].includes(s)
90
90
  }
91
91
  },
92
92
  computed: {
@@ -105,22 +105,24 @@ const x = /* @__PURE__ */ p(D, [["render", U]]), M = {
105
105
  lg: "text-lg",
106
106
  xl: "text-xl",
107
107
  "2xl": "text-2xl",
108
- "3xl": "text-3xl"
108
+ "3xl": "text-3xl",
109
+ "4xl": "text-5xl",
110
+ "5xl": "text-5xl"
109
111
  }[this.size] || "text-base";
110
112
  }
111
113
  }
112
114
  };
113
- function W(o, e, r, h, c, l) {
114
- return m(), f("i", {
115
- class: C([r.type, r.icon, l.colorClasses, l.sizeClasses]),
116
- onClick: e[0] || (e[0] = (n) => o.$emit("click"))
115
+ function M(s, e, o, h, c, l) {
116
+ return m(), g("i", {
117
+ class: v([o.type, o.icon, l.colorClasses, l.sizeClasses]),
118
+ onClick: e[0] || (e[0] = (a) => s.$emit("click"))
117
119
  }, null, 2);
118
120
  }
119
- const B = /* @__PURE__ */ p(M, [["render", W]]), H = {
121
+ const S = /* @__PURE__ */ y(U, [["render", M]]), W = {
120
122
  name: "BaseButton",
121
123
  components: {
122
- BaseText: x,
123
- Icon: B
124
+ BaseText: w,
125
+ Icon: S
124
126
  },
125
127
  props: {
126
128
  label: {
@@ -142,22 +144,22 @@ const B = /* @__PURE__ */ p(M, [["render", W]]), H = {
142
144
  color: {
143
145
  type: String,
144
146
  default: "primary",
145
- validator: (o) => ["primary", "secondary", "accent"].includes(o)
147
+ validator: (s) => ["primary", "secondary", "accent"].includes(s)
146
148
  },
147
149
  hoverColor: {
148
150
  type: String,
149
- default: "",
150
- validator: (o) => ["primary", "secondary", "accent"].includes(o)
151
+ default: null,
152
+ validator: (s) => s === null || ["primary", "secondary", "accent"].includes(s)
151
153
  },
152
154
  backgroundColor: {
153
155
  type: String,
154
156
  default: "primary",
155
- validator: (o) => ["primary", "secondary", "accent"].includes(o)
157
+ validator: (s) => ["primary", "secondary", "accent"].includes(s)
156
158
  },
157
159
  border: {
158
160
  type: String,
159
161
  default: "none",
160
- validator: (o) => ["none", "primary", "secondary", "accent", "gradient1", "gradient2"].includes(o)
162
+ validator: (s) => ["none", "primary", "secondary", "accent", "gradient1", "gradient2"].includes(s)
161
163
  },
162
164
  padding: {
163
165
  type: String,
@@ -170,7 +172,7 @@ const B = /* @__PURE__ */ p(M, [["render", W]]), H = {
170
172
  iconColor: {
171
173
  type: String,
172
174
  default: "primary",
173
- validator: (o) => ["primary", "secondary", "accent"].includes(o)
175
+ validator: (s) => ["primary", "secondary", "accent"].includes(s)
174
176
  },
175
177
  iconSize: {
176
178
  control: { type: "select", options: ["xs", "sm", "md", "lg", "xl", "2xl", "3xl"] },
@@ -179,12 +181,12 @@ const B = /* @__PURE__ */ p(M, [["render", W]]), H = {
179
181
  iconType: {
180
182
  type: String,
181
183
  default: "fa-solid",
182
- validator: (o) => ["fa-thin", "fa-sharp"].includes(o)
184
+ validator: (s) => ["fa-brands", "fa-solid", "fa-thin", "fa-sharp"].includes(s)
183
185
  },
184
186
  align: {
185
187
  type: String,
186
188
  default: "center",
187
- validator: (o) => ["left", "center", "right", "between"].includes(o)
189
+ validator: (s) => ["left", "center", "right", "between"].includes(s)
188
190
  }
189
191
  },
190
192
  computed: {
@@ -217,43 +219,43 @@ const B = /* @__PURE__ */ p(M, [["render", W]]), H = {
217
219
  }[this.align] || "justify-center";
218
220
  }
219
221
  }
220
- }, R = ["title", "aria-label"];
221
- function Z(o, e, r, h, c, l) {
222
- const n = u("BaseText"), d = u("Icon");
223
- return m(), f("button", {
224
- class: C([
222
+ }, H = ["title", "aria-label"];
223
+ function Z(s, e, o, h, c, l) {
224
+ const a = u("BaseText"), d = u("Icon");
225
+ return m(), g("button", {
226
+ class: v([
225
227
  "rounded-md transition duration-300 ease-in-out",
226
228
  l.paddingClass,
227
229
  l.backgroundClass,
228
230
  l.borderClass
229
231
  ]),
230
- title: r.altText || r.label,
231
- "aria-label": r.altText || r.label,
232
- onClick: e[0] || (e[0] = (g) => o.$emit("click"))
232
+ title: o.altText || o.label,
233
+ "aria-label": o.altText || o.label,
234
+ onClick: e[0] || (e[0] = (b) => s.$emit("click"))
233
235
  }, [
234
236
  t("div", {
235
- class: C(["flex items-center", l.alignmentClass, "space-x-2"])
237
+ class: v(["flex items-center", l.alignmentClass, "space-x-2"])
236
238
  }, [
237
- s(n, {
239
+ r(a, {
238
240
  color: "",
239
- size: r.size,
240
- weight: r.weight
241
+ size: o.size,
242
+ weight: o.weight
241
243
  }, {
242
- default: a(() => [
243
- i(b(r.label), 1)
244
+ default: n(() => [
245
+ i(f(o.label), 1)
244
246
  ]),
245
247
  _: 1
246
248
  }, 8, ["size", "weight"]),
247
- s(d, {
248
- icon: r.iconName,
249
- color: r.iconColor,
250
- size: r.iconSize,
251
- type: r.iconType
249
+ r(d, {
250
+ icon: o.iconName,
251
+ color: o.iconColor,
252
+ size: o.iconSize,
253
+ type: o.iconType
252
254
  }, null, 8, ["icon", "color", "size", "type"])
253
255
  ], 2)
254
- ], 10, R);
256
+ ], 10, H);
255
257
  }
256
- const v = /* @__PURE__ */ p(H, [["render", Z]]), J = {
258
+ const B = /* @__PURE__ */ y(W, [["render", Z]]), R = {
257
259
  name: "InputField",
258
260
  props: {
259
261
  type: {
@@ -267,23 +269,38 @@ const v = /* @__PURE__ */ p(H, [["render", Z]]), J = {
267
269
  modelValue: {
268
270
  type: String,
269
271
  default: ""
272
+ },
273
+ color: {
274
+ type: String,
275
+ default: "primary",
276
+ validator: (s) => ["primary", "secondary"].includes(s)
277
+ }
278
+ },
279
+ computed: {
280
+ bgClass() {
281
+ return this.mode === "primary" ? "bg-primary text-secondary border-b-2 border-secondary focus:outline-none focus:border-accent w-full placeholder-secondary px-2 hover:border-accent duration-300 ease-in-out" : "bg-secondary";
282
+ },
283
+ textClass() {
284
+ return this.mode === "primary", "text-primary";
270
285
  }
271
286
  }
272
- }, O = ["type", "placeholder"];
273
- function X(o, e, r, h, c, l) {
274
- return m(), f("input", _({
275
- type: r.type,
276
- placeholder: r.placeholder
277
- }, o.$attrs, {
278
- class: "bg-black text-secondary border-b-2 border-secondary focus:outline-none focus:border-accent w-full placeholder-secondary px-2 hover:border-accent duration-300 ease-in-out",
279
- onInput: e[0] || (e[0] = (n) => o.$emit("update:modelValue", n.target.value))
280
- }), null, 16, O);
287
+ }, O = ["type", "placeholder", "value"];
288
+ function J(s, e, o, h, c, l) {
289
+ return m(), g("input", {
290
+ type: o.type,
291
+ placeholder: o.placeholder,
292
+ value: o.modelValue,
293
+ class: v([
294
+ o.color === "primary" ? "bg-primary text-secondary border-b-2 border-secondary focus:outline-none focus:border-accent w-full placeholder-secondary px-2 hover:border-accent duration-300 ease-in-out" : "text-primary bg-white border-b-2 border-secondary focus:outline-none focus:border-accent w-full placeholder-primary px-2 hover:border-accent duration-300 ease-in-out"
295
+ ]),
296
+ onInput: e[0] || (e[0] = (a) => s.$emit("update:modelValue", a.target.value))
297
+ }, null, 42, O);
281
298
  }
282
- const F = /* @__PURE__ */ p(J, [["render", X]]), q = {
299
+ const V = /* @__PURE__ */ y(R, [["render", J]]), X = {
283
300
  name: "SearchBox",
284
301
  components: {
285
- InputField: F,
286
- Icon: B
302
+ InputField: V,
303
+ Icon: S
287
304
  },
288
305
  data() {
289
306
  return {
@@ -292,19 +309,20 @@ const F = /* @__PURE__ */ p(J, [["render", X]]), q = {
292
309
  },
293
310
  methods: {
294
311
  onSearch() {
295
- console.log("Search Query:", this.searchQuery);
312
+ console.log("Search Query:", this.searchQuery), this.$emit("search", this.searchQuery);
296
313
  }
297
314
  }
298
- }, P = { class: "relative flex items-center w-full max-w-md" };
299
- function $(o, e, r, h, c, l) {
300
- const n = u("InputField"), d = u("Icon");
301
- return m(), f("div", P, [
302
- s(n, {
315
+ }, q = { class: "relative flex items-center w-full max-w-md" };
316
+ function P(s, e, o, h, c, l) {
317
+ const a = u("InputField"), d = u("Icon");
318
+ return m(), g("div", q, [
319
+ r(a, {
303
320
  modelValue: c.searchQuery,
304
- "onUpdate:modelValue": e[0] || (e[0] = (g) => c.searchQuery = g),
305
- placeholder: "Search"
321
+ "onUpdate:modelValue": e[0] || (e[0] = (b) => c.searchQuery = b),
322
+ placeholder: "Search",
323
+ color: "primary"
306
324
  }, null, 8, ["modelValue"]),
307
- s(d, {
325
+ r(d, {
308
326
  icon: "fa-search",
309
327
  color: "secondary",
310
328
  size: "sm",
@@ -313,88 +331,118 @@ function $(o, e, r, h, c, l) {
313
331
  }, null, 8, ["onClick"])
314
332
  ]);
315
333
  }
316
- const ee = /* @__PURE__ */ p(q, [["render", $]]), K = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI4AAABwCAIAAABHB982AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAtOSURBVHhe7Z3tedQ6EEbpIB2QCkIFSQWkglBBqIBUABUEKoAKkgo2FSQVQAdUcM+DBl9fWx7Nh7zrzd3zgye7a0mWZuadkbwJb04cnMfHx9+/fz89PfHDly9f7u7uPnz4cHV1JR+f2Ahv377FTlVeXl4wm1x34uB8/PhRLLPAbrc7OzuTq08ckKJ+OqiiXH3iUCjqN+EUWAeG8gEzPDw83NzcYDa4uLjg569fvxYLDaCT0ubEQcAq9/f38uK/YDOx0h9OGrhpvn//LoY6mWrjjIvDkwBumpLJCpeXl/LuiQ0yRNXz87O8dWKbDLmK6kPeOrFNfv36hZ12u528PrFNhkTFZkveOrFBMM/Lywt2+vTpk7x1YpuU04qHhwd5vX3Ozs7QAXZ/j4+PxcsKiDgvefPHjx93d3dXV1ev6YisFH5Ufcchfaw+Zih51QiWw67S/mjBPGU6FxcX8tZmIT7GBypeyuO4I03FQ4q6vb2Vt3rBsr57944IAH7IqxCuNBa6MHTSPcLOz8+HycIaklueXXUrJbhFVuHbt2/VNUWyGI/scn197Z3MUJ72In/EyRTIHEtSzAqQ/zGbXJ0DMaDPPnbivukukD8sNiP2XT0bCT/t5n6wtPGWsFkytZRSAuWX1xnoK7yUNMT7lPwxaPQa0LMy9JyARxZoJV04KW4KSFFR1zlor1ytwK3PH0rGWDJYr/6XsMdWMlkGgtjophhSGixBR09PT3J5JybexxDywV/Y+r1//77MmX8vLy/RIvYZ8nEIyyJmlGPAa61SSjTBm6VBFaPBA9DtUKFNQkrJq5SwmaXUZ4s3yHVp7OVMKSUsVNVIwDW6x9ME1m5yrw3f+eM9mfCqLiIznbhLHlRBel/GXvE2ysKOXmZH852/JK2FyklHf1jJI5GNpgwOO32mA8g+4DS8zw8IaXm/sR22B2ZHuD8ZvkXSWkNhTT8rKTxMfGIVmICMtl+a6jeG5Q7nreITip3wA24Gd765ueFffg54ht3z4qznaDosvat2ojKUln6Q9/k0f/78SVZY+sIJH8l1Ztb97spBpG9gUsc3weWlZZrPnz83HcUbyt7pOEATqreCu+GGqAH3yjU4CxVOTBZ0vIEF3IY0jsLs7O7vstaKGjifNsbQp4HN+hrMvikpYNrMDWAnnE/6suEKZa/nmZhXExZNKBBwHQ3mXbtMiRH73hbhIu1bDDv9nkxCCjvJBzZY37wWFehHOjUTTloxr0dppH0Lr0i04Y7HFREhIh84CZRJVQK1k93Tx0hjP8bhWFVp0IvJIUfm65yscliOBgIJ2e7pY7xiO2AfLjxEncn5bjIZcnP51LWfwMrkEqNH9jy2YGWl1z90idm8tfYTWJlcQlvpRaXPs93CRP16yWveWgHp8AZWwCEGjJ5B8EmDPPOnW712A5kyGgK7fe9pS3IdjbMLiHkFrCL9jegorwFRGmAhvE5TnY4O/iSN/RiDuM8J0/X1tfQ3gjUKiM8SmZO6gNN4nz9lKgtuT3pRycjsvyzlxt1u19Faxgw8JzBJ71iZysKuGR1yivI1DOqLjtbyJvwB7z1MqqQmGZe3622HdNVMjL1O8llxYxKe4NVAco+0tMFdScsQxkkFTsumSE8q+F2X8PKWZwWv1wcqi4w62VNjNrCkGwNdwiu20/IupTd8M0Wg65A6tYbjU9omXEzFKC1DxGp3y3e1xrgmBZki0CsV8dQYeHJBk4weUltKR2a8RZrxK6sDmX2kt4qJp8bwFjVsMONeZIzXE73+l9Gl6sZUofH9S51YYQboTEA6SDzeEb2e6N1aYVpp6cdecJZvREmzGDc3N9JZiEB9GCgFXZnfG7hrm4olYpEzdea/0Jf0GsK7WQ6orit8vfkjbCpmrRfrLGyHze8Yhkw+sECjXNbyOocrnXjzR8xUxK6i5P2NNEAgh5NWgdiyx7hXA12rac8fBa+p6F8vMr1fInKTjy1cSfpqwVjSxoa9Z/B2bg9ZfLFZs2RrByNM0itNE+xR7xqIkJVmBlhQaWbDaCqCqbm5zlQoETJfwbS7v0sDXaYCaWbDsgWmVLEkCFfC7gOOSSCvemTnlSlpZqPp/mOaB1fG5OdS6f4EIsxeWLsWVNrYcPXcFG1jb5kDqj5YcukY+5Gdq1tpY8N1DEjQSLMa9tJ/rerci/0rEvZvvrn2qtLGxvCbthZ0xbb701ZMBcYjKLtku9KVtLFBJSbNDEibBewBuiFTgSW2XNlV2rRY78R21/o7vvaTgW2ZCpqrYM9VYMzYXCYNbNh3ArpjubZo3kegq8Pd646GTsqlBoxJxVsH2w/X9U3r1dWVXGfAdaa8J/RM4NoGGpOK11T2gkU/qnA9T9m3qc7Pz3ElebGAsr7eNTUmFZeogt1U+mbIdaSyV1MNMyQ3LA1M0CgJxptajWvh3V3aN0N6gnEV/XqAdmZSmGISAmgcZPysPEzTdb+K0f29GdueY/T9r2srvVdTKeHCR3o18Rz60+BGU+kLOsd4agfSYAHXLyvs1VTGJD8n8AcgChZTeTdVYNxcNzdViu/O8SbUFMwwcJpOE6/XD1hM5S1VwGiq5hmYXGcjoP9ZXKfprGMsngoWUwW81WiqpmTJdTYOYKoCtRxjo2xyIzMwUv4oxWKq2CjSWKXZs1xn42CmGmA+t7e3uDa3AngiYWd8ftjEYqrYWNJYpdmzXGfD/kjhKGmaKpCoCtJ+mWZNAXKpjfCtHgdNU4UfrUr7ZSx6ZT9Wh/+7qcI1i7RfxrKtdhXrljA9YvTz0PDkLRWgxQlcpuJiafYqoUiRidYIq1/TVEYncB0svXJT6SfrYfVrmsq4V3Md1wZOVY4JxW0zWbp5Bmg8XqH0kAY2pNmrRDkPdT1NnqCfrD+b/zalrs9zem03t4hMcYZ9NavoprKU6QXLDn1MWLG3jrKgt7n/GlJ/tGg/qfL+qlb+pG2jKJV60j2VaHDFa7M8mcC40vKVsVRf2QVqCcUJXOf05B5pZkPZXdAVKiIvjg6Z34y84ivlgLfzLk8XGbT0c5QKuZQG8iEFS6YKbABcz+yr/Q92Am5M3j0iqlsWEkk+pGBJWgMbAO/WalKvj+0EmR1IH1BhZBqX4V+jIleFRflFWpaApE0symuVaijENgDerdVYFSZ22tOvCS/B2s0XnXf0WqhapitLyfXD8wh+YDmU4OOjcuWEmLR6t1bAQCwLNh4/Qznkg0fcXD/Bw2AEWXVNq6qy9FRiabEeF/4376XrFesq2L+npoAXzu9zTzCBqoLN4TL8a7xMVa9fcvmmU5cgG/9/1NVzxfCJIkssXUTplYAjECvj0LaAwVhQdAzmNl6ajOuwgPxU8qW8/i+Z36jxTnZM+BuSWXCxqnYlqdZFBG5mjcbECooBIlI68pM8IQtiFz0X1T9zgyd2HCtZIuspWeEwJV9A9CxU/b2vnZIhBZehP3C5+l9amrOS6EE1RTFc39jN7zq5Ja+bHuArMX0dfEI11bsOcposFSxeXBrYa1AHFMpriF6hquPdw7fXQQ5LLz22OEDJ5z1QcVG1U/cR81lqjDGwMruCCK4NjZf7+3sZZsQantHXu8lY2F66XuAAJd8kP5Ek2R9QCKEnmU0GVPMt5aV83I81Vg3bK9Y6gJ3Guozyzjdx2CyWVLATvim9/GUSwYyI1OATjBtOXX2lb8zSxvxgp7GsEWPjJvOVHcCirqWs2gnGJR/XTFSLl9isqTxjuHjSSV+4HxnpL4yoLNRWYFGIgOZSkp+WJjNkKaRVWWJGWXpgOGY/Bdi4xFjbM/qzlMaqEjoBRTXOlsuUINON3RHcDgFgxOOz0wD3jSpinjINXUIzYF1cG9uwZMCgvCOf7Qvq8j3p3ps3/wDHS5O0YOBNvAAAAABJRU5ErkJggg==", te = {
317
- name: "Header",
334
+ const $ = /* @__PURE__ */ y(X, [["render", P]]), Y = "data:image/png;base64,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", ee = {
335
+ name: "PageHeader",
318
336
  components: {
319
- SearchBox: ee,
320
- BaseText: x,
321
- BaseButton: v,
322
- Icon: B
337
+ SearchBox: $,
338
+ BaseText: w,
339
+ BaseButton: B,
340
+ Icon: S
323
341
  },
324
342
  data() {
325
343
  return {
326
- logo: K
344
+ logo: Y,
345
+ dropdownOpen: !1,
346
+ items: [
347
+ { label: "Home", icon: "fa-home" },
348
+ { label: "Tournaments", icon: "fa-trophy" },
349
+ { label: "Clubs", icon: "fa-users" },
350
+ { label: "Leaderboard", icon: "fa-star" }
351
+ ]
327
352
  };
353
+ },
354
+ methods: {
355
+ onSearch(s) {
356
+ this.$emit("search", s);
357
+ },
358
+ openMenu() {
359
+ this.dropdownOpen = !0, event.stopPropagation();
360
+ },
361
+ selectItem(s) {
362
+ this.dropdownOpen = !1, this.$emit("changePage", s);
363
+ },
364
+ handleClickOutside() {
365
+ this.dropdownOpen && (this.dropdownOpen = !1);
366
+ }
367
+ },
368
+ mounted() {
369
+ document.addEventListener("click", this.handleClickOutside);
370
+ },
371
+ beforeUnmount() {
372
+ document.removeEventListener("click", this.handleClickOutside);
328
373
  }
329
- }, se = { class: "border-b border-lineGrey w-full bg-primary m-0" }, re = { class: "w-full hidden md:flex" }, oe = { class: "w-[150px] h-[150px] bg-primary flex-shrink-0 flex items-center justify-center" }, le = ["src"], ne = { class: "flex w-full items-center border-r border-l border-lineGrey" }, ae = { class: "hidden lg:flex w-1/3 pl-20" }, ie = { class: "ml-8 w-2/3 flex justify-around" }, de = { class: "w-[150px] h-[150px] bg-primary flex-shrink-0 flex items-center justify-center" }, ce = { class: "w-full flex md:hidden" }, ue = { class: "m-2 flex justify-between w-full" }, me = ["src"];
330
- function ge(o, e, r, h, c, l) {
331
- const n = u("SearchBox"), d = u("BaseText"), g = u("BaseButton"), y = u("Icon");
332
- return m(), f("header", se, [
374
+ }, te = { class: "border-b border-lineGrey w-full bg-primary m-0" }, re = { class: "w-full hidden md:flex" }, se = { class: "w-[150px] h-[150px] bg-primary flex-shrink-0 flex items-center justify-center" }, le = ["src"], oe = { class: "flex w-full items-center border-r border-l border-lineGrey" }, ae = { class: "hidden lg:flex w-1/3 pl-20 mb-3" }, ne = { class: "ml-8 w-2/3 flex justify-around" }, ie = { class: "w-[150px] h-[150px] bg-primary flex-shrink-0 flex items-center justify-center" }, de = { class: "w-full flex md:hidden fixed top-0 left-0 z-10 bg-primary" }, ce = { class: "m-2 flex justify-between w-full" }, ue = ["src"], me = ["onClick"];
375
+ function ge(s, e, o, h, c, l) {
376
+ const a = u("SearchBox"), d = u("BaseText"), b = u("BaseButton"), p = u("Icon");
377
+ return m(), g("header", te, [
333
378
  t("section", re, [
334
- t("div", oe, [
379
+ t("div", se, [
335
380
  t("img", {
336
381
  src: c.logo,
337
382
  alt: "Logo",
338
383
  class: "h-14 w-18 bg-accent"
339
384
  }, null, 8, le)
340
385
  ]),
341
- t("section", ne, [
386
+ t("section", oe, [
342
387
  t("div", ae, [
343
- s(n, { class: "w-24 md:w-32 lg:w-52 xl:w-64 bg-primary" })
388
+ r(a, {
389
+ class: "w-24 md:w-32 lg:w-52 xl:w-64",
390
+ onSearch: l.onSearch
391
+ }, null, 8, ["onSearch"])
344
392
  ]),
345
- t("nav", ie, [
346
- s(d, {
393
+ t("nav", ne, [
394
+ r(d, {
347
395
  color: "secondary",
348
396
  size: "md",
349
397
  tag: "p",
350
398
  weight: "normal",
351
399
  class: "border-b-2 border-primary hover:border-accent pb-2 duration-300 ease-in-out"
352
400
  }, {
353
- default: a(() => e[0] || (e[0] = [
401
+ default: n(() => e[2] || (e[2] = [
354
402
  i("Tournaments")
355
403
  ])),
356
404
  _: 1
357
405
  }),
358
- s(d, {
406
+ r(d, {
359
407
  color: "secondary",
360
408
  size: "md",
361
409
  tag: "p",
362
410
  weight: "normal",
363
411
  class: "border-b-2 border-primary hover:border-accent pb-2 duration-300 ease-in-out"
364
412
  }, {
365
- default: a(() => e[1] || (e[1] = [
413
+ default: n(() => e[3] || (e[3] = [
366
414
  i("Clubs")
367
415
  ])),
368
416
  _: 1
369
417
  }),
370
- s(d, {
418
+ r(d, {
371
419
  color: "secondary",
372
420
  size: "md",
373
421
  tag: "p",
374
422
  weight: "normal",
375
423
  class: "border-b-2 border-primary hover:border-accent pb-2 duration-300 ease-in-out"
376
424
  }, {
377
- default: a(() => e[2] || (e[2] = [
425
+ default: n(() => e[4] || (e[4] = [
378
426
  i("Leaderboard")
379
427
  ])),
380
428
  _: 1
381
429
  }),
382
- s(d, {
430
+ r(d, {
383
431
  color: "secondary",
384
432
  size: "md",
385
433
  tag: "p",
386
434
  weight: "normal",
387
435
  class: "border-b-2 border-primary hover:border-accent pb-2 duration-300 ease-in-out"
388
436
  }, {
389
- default: a(() => e[3] || (e[3] = [
437
+ default: n(() => e[5] || (e[5] = [
390
438
  i("Contact")
391
439
  ])),
392
440
  _: 1
393
441
  })
394
442
  ])
395
443
  ]),
396
- t("div", de, [
397
- s(g, {
444
+ t("div", ie, [
445
+ r(b, {
398
446
  backgroundColor: "primary",
399
447
  border: "secondary",
400
448
  color: "secondary",
@@ -403,29 +451,62 @@ function ge(o, e, r, h, c, l) {
403
451
  })
404
452
  ])
405
453
  ]),
406
- t("section", ce, [
407
- t("div", ue, [
454
+ t("section", de, [
455
+ t("div", ce, [
408
456
  t("img", {
409
457
  src: c.logo,
410
458
  alt: "Logo",
411
459
  class: "h-6 w-9"
412
- }, null, 8, me),
413
- s(y, {
460
+ }, null, 8, ue),
461
+ r(p, {
414
462
  icon: "fa-bars",
415
463
  color: "secondary",
416
464
  size: "xl",
417
- class: "",
418
- onClick: o.onSearch
419
- }, null, 8, ["onClick"])
465
+ onClick: e[0] || (e[0] = (C) => l.openMenu(C))
466
+ })
420
467
  ])
421
- ])
468
+ ]),
469
+ c.dropdownOpen ? (m(), g("div", {
470
+ key: 0,
471
+ class: "fixed right-2 mt-8 w-40 bg-secondary border rounded-lg border-lineGrey shadow-xl z-50",
472
+ onClick: e[1] || (e[1] = F(() => {
473
+ }, ["stop"]))
474
+ }, [
475
+ t("ul", null, [
476
+ (m(!0), g(A, null, K(c.items, (C) => (m(), g("li", {
477
+ key: C.label,
478
+ onClick: (z) => l.selectItem(C),
479
+ class: "px-2 py-2 cursor-pointer hover:bg-hoverColor justify-end flex"
480
+ }, [
481
+ r(d, {
482
+ color: "primary",
483
+ size: "xs sm",
484
+ tag: "p",
485
+ weight: "normal",
486
+ class: "mt-0.5"
487
+ }, {
488
+ default: n(() => [
489
+ i(f(C.label), 1)
490
+ ]),
491
+ _: 2
492
+ }, 1024),
493
+ r(p, {
494
+ icon: C.icon,
495
+ type: "fa-regular",
496
+ size: "sm",
497
+ color: "accent",
498
+ class: "ml-2"
499
+ }, null, 8, ["icon"])
500
+ ], 8, me))), 128))
501
+ ])
502
+ ])) : x("", !0)
422
503
  ]);
423
504
  }
424
- const fe = /* @__PURE__ */ p(te, [["render", ge]]), be = {
505
+ const be = /* @__PURE__ */ y(ee, [["render", ge]]), fe = {
425
506
  name: "HeroBanner",
426
507
  components: {
427
- BaseText: x,
428
- BaseButton: v
508
+ BaseText: w,
509
+ BaseButton: B
429
510
  },
430
511
  props: {
431
512
  imageSrc: {
@@ -474,87 +555,87 @@ const fe = /* @__PURE__ */ p(te, [["render", ge]]), be = {
474
555
  this.$emit("button-click");
475
556
  }
476
557
  }
477
- }, he = { class: "relative w-full md:border-b md:border-l md:border-r border-lineGrey" }, pe = ["src"], ye = { class: "hidden md:flex absolute inset-0 items-center justify-start px-8" }, xe = { class: "text-left text-white max-w-lg" }, we = {
558
+ }, he = { class: "relative w-full md:border-b md:border-l md:border-r border-lineGrey" }, ye = ["src"], pe = { class: "hidden md:flex absolute inset-0 items-center justify-start px-8 mt-40" }, xe = { class: "text-left text-white max-w-lg" }, we = {
478
559
  key: 1,
479
560
  class: "flex justify-center text-left w-full px-6 py-8"
480
- }, Ae = { class: "w-full" };
481
- function ve(o, e, r, h, c, l) {
482
- const n = u("BaseText"), d = u("BaseButton");
483
- return m(), f(A, null, [
561
+ }, Ce = { class: "w-full" };
562
+ function ve(s, e, o, h, c, l) {
563
+ const a = u("BaseText"), d = u("BaseButton");
564
+ return m(), g(A, null, [
484
565
  t("section", {
485
566
  class: "relative w-full h-3/4 flex justify-center bg-primary m-0",
486
- style: S(l.backgroundStyle)
567
+ style: k(l.backgroundStyle)
487
568
  }, [
488
569
  e[0] || (e[0] = t("div", { class: "hidden md:block w-[150px] bg-primary border-b border-lineGrey flex-shrink-0" }, null, -1)),
489
570
  t("div", he, [
490
- c.isMobile ? w("", !0) : (m(), f("img", {
571
+ c.isMobile ? x("", !0) : (m(), g("img", {
491
572
  key: 0,
492
- src: r.imageSrc,
573
+ src: o.imageSrc,
493
574
  alt: "Hero Image",
494
575
  class: "w-full h-full object-cover"
495
- }, null, 8, pe)),
496
- t("section", ye, [
576
+ }, null, 8, ye)),
577
+ t("section", pe, [
497
578
  t("div", xe, [
498
- s(n, {
579
+ r(a, {
499
580
  color: "secondary",
500
581
  tag: "h1",
501
582
  size: "4xl",
502
583
  weight: "bold",
503
584
  class: "mb-4"
504
585
  }, {
505
- default: a(() => [
506
- i(b(r.title), 1)
586
+ default: n(() => [
587
+ i(f(o.title), 1)
507
588
  ]),
508
589
  _: 1
509
590
  }),
510
- s(n, {
591
+ r(a, {
511
592
  color: "secondary",
512
593
  tag: "p",
513
594
  size: "lg",
514
595
  weight: "normal",
515
596
  class: "mb-6"
516
597
  }, {
517
- default: a(() => [
518
- i(b(r.description), 1)
598
+ default: n(() => [
599
+ i(f(o.description), 1)
519
600
  ]),
520
601
  _: 1
521
602
  }),
522
- s(d, {
523
- label: r.buttonLabel,
603
+ r(d, {
604
+ label: o.buttonLabel,
524
605
  color: "secondary",
525
606
  border: "gradient1",
526
607
  onClick: l.onClick
527
608
  }, null, 8, ["label", "onClick"])
528
609
  ])
529
610
  ]),
530
- c.isMobile ? (m(), f("div", we, [
531
- t("div", Ae, [
532
- s(n, {
611
+ c.isMobile ? (m(), g("div", we, [
612
+ t("div", Ce, [
613
+ r(a, {
533
614
  color: "secondary",
534
615
  tag: "h1",
535
616
  size: "xl",
536
617
  weight: "bold",
537
618
  class: "mb-2 w-48"
538
619
  }, {
539
- default: a(() => [
540
- i(b(r.title), 1)
620
+ default: n(() => [
621
+ i(f(o.title), 1)
541
622
  ]),
542
623
  _: 1
543
624
  }),
544
- s(n, {
625
+ r(a, {
545
626
  color: "secondary",
546
627
  tag: "p",
547
628
  size: "xs",
548
629
  weight: "normal",
549
630
  class: "mb-6 w-48"
550
631
  }, {
551
- default: a(() => [
552
- i(b(r.description), 1)
632
+ default: n(() => [
633
+ i(f(o.description), 1)
553
634
  ]),
554
635
  _: 1
555
636
  }),
556
- s(d, {
557
- label: r.buttonLabel,
637
+ r(d, {
638
+ label: o.buttonLabel,
558
639
  size: "xs",
559
640
  color: "secondary",
560
641
  border: "gradient1",
@@ -562,7 +643,7 @@ function ve(o, e, r, h, c, l) {
562
643
  onClick: l.onClick
563
644
  }, null, 8, ["label", "onClick"])
564
645
  ])
565
- ])) : w("", !0)
646
+ ])) : x("", !0)
566
647
  ]),
567
648
  e[1] || (e[1] = t("div", { class: "hidden md:block w-[150px] bg-primary border-b border-lineGrey flex-shrink-0" }, null, -1))
568
649
  ], 4),
@@ -573,26 +654,30 @@ function ve(o, e, r, h, c, l) {
573
654
  ], -1))
574
655
  ], 64);
575
656
  }
576
- const Ce = /* @__PURE__ */ p(be, [["render", ve]]), Be = {
657
+ const Ae = /* @__PURE__ */ y(fe, [["render", ve]]), Be = {
577
658
  name: "TournamentCardSkeleton"
578
659
  }, Se = { class: "md:w-full mb-8 animate-pulse" };
579
- function Ee(o, e, r, h, c, l) {
580
- return m(), f("div", Se, e[0] || (e[0] = [
660
+ function ke(s, e, o, h, c, l) {
661
+ return m(), g("div", Se, e[0] || (e[0] = [
581
662
  E('<section class="hidden md:block"><div class="w-full h-52 bg-gray-300 mb-2 rounded-md"></div><div class="w-3/4 h-6 bg-gray-300 mb-1 rounded"></div><div class="w-2/3 h-4 bg-gray-300 mb-2 rounded"></div><div class="flex items-center mb-1"><div class="w-6 h-6 bg-gray-300 rounded-full mr-3"></div><div class="w-2/3 h-4 bg-gray-300 rounded"></div></div><div class="flex items-center"><div class="w-6 h-6 bg-gray-300 rounded-full mr-3"></div><div class="w-2/3 h-4 bg-gray-300 rounded"></div></div></section><section class="md:hidden flex-col items-start gap-2 border-b border-borderGray"><div class="flex flex-row"><div class="w-28 h-16 bg-gray-300 rounded-md"></div><div class="flex flex-col h-16 justify-center pl-2"><div class="w-3/4 h-6 bg-gray-300 rounded mb-1"></div><div class="w-1/2 h-4 bg-gray-300 rounded"></div></div></div><div class="flex justify-between pt-4 pb-2"><div class="flex justify-start w-5/12"><div class="w-2 h-2 bg-gray-300 rounded-full mr-1"></div><div class="w-2/3 h-4 bg-gray-300 rounded"></div></div><div class="flex justify-start mb-1 w-7/12"><div class="w-2 h-2 bg-gray-300 rounded-full mr-1"></div><div class="w-2/3 h-4 bg-gray-300 rounded"></div></div></div></section>', 2)
582
663
  ]));
583
664
  }
584
- const ze = /* @__PURE__ */ p(Be, [["render", Ee]]), Ie = {
665
+ const Ee = /* @__PURE__ */ y(Be, [["render", ke]]), ze = {
585
666
  name: "TournamentCard",
586
667
  components: {
587
- TournamentCardSkeleton: ze,
588
- BaseText: x,
589
- Icon: B
668
+ TournamentCardSkeleton: Ee,
669
+ BaseText: w,
670
+ Icon: S
590
671
  },
591
672
  props: {
592
673
  data: {
593
674
  type: Object,
594
675
  required: !0
595
676
  },
677
+ index: {
678
+ type: Number,
679
+ required: !1
680
+ },
596
681
  isLoading: {
597
682
  type: Boolean,
598
683
  default: !1
@@ -603,6 +688,7 @@ const ze = /* @__PURE__ */ p(Be, [["render", Ee]]), Ie = {
603
688
  isImageError: !1
604
689
  };
605
690
  },
691
+ emits: ["grid-card-click"],
606
692
  computed: {
607
693
  image() {
608
694
  return !this.isImageError && this.data.ImagesURLs && this.data.ImagesURLs.length > 0 ? this.data.ImagesURLs : "https://via.placeholder.com/300x200";
@@ -627,8 +713,8 @@ const ze = /* @__PURE__ */ p(Be, [["render", Ee]]), Ie = {
627
713
  }
628
714
  },
629
715
  methods: {
630
- formatDate(o) {
631
- return new Date(o).toLocaleDateString("en-US", {
716
+ formatDate(s) {
717
+ return new Date(s).toLocaleDateString("en-US", {
632
718
  year: "numeric",
633
719
  month: "short",
634
720
  day: "numeric"
@@ -636,160 +722,164 @@ const ze = /* @__PURE__ */ p(Be, [["render", Ee]]), Ie = {
636
722
  },
637
723
  imageError() {
638
724
  this.isImageError = !0;
725
+ },
726
+ onCardClick() {
727
+ this.$emit("grid-card-click", this.data);
639
728
  }
640
729
  }
641
- }, ke = {
730
+ }, Ie = {
642
731
  key: 0,
643
732
  class: "max-w-80 md:w-full mb-8"
644
- }, Qe = {
645
- key: 1,
646
- class: "max-w-80 md:w-full mb-8"
647
- }, Le = { class: "hidden md:block" }, Te = ["src"], Fe = { class: "flex items-center mb-1" }, Ke = { class: "flex w-6 justify-center" }, je = { class: "flex items-center" }, Ge = { class: "flex w-6 justify-center" }, Ve = { class: "md:hidden flex-col items-start gap-2 border-b border-borderGray" }, _e = { class: "flex flex-row" }, Ye = ["src"], Ne = { class: "flex flex-col h-16 justify-center pl-2" }, De = { class: "flex justify-between pt-4 pb-2" }, Ue = { class: "flex justify-start w-5/12" }, Me = { class: "flex justify-start mb-1 w-7/12" };
648
- function We(o, e, r, h, c, l) {
649
- const n = u("TournamentCardSkeleton"), d = u("BaseText"), g = u("Icon");
650
- return m(), f(A, null, [
651
- r.isLoading ? (m(), f("div", ke, [
652
- s(n)
653
- ])) : w("", !0),
654
- r.isLoading ? w("", !0) : (m(), f("div", Qe, [
733
+ }, Le = { class: "hidden md:block" }, Qe = ["src"], Ge = { class: "flex items-center mb-1" }, Te = { class: "flex w-6 justify-center" }, Fe = { class: "flex items-center" }, Ke = { class: "flex w-6 justify-center" }, je = { class: "md:hidden flex-col items-start gap-2 border-b border-borderGray" }, Ve = { class: "flex flex-row" }, Ye = ["src"], Ne = { class: "flex flex-col h-16 justify-center pl-2" }, _e = { class: "flex justify-between pt-4 pb-2" }, De = { class: "flex justify-start w-5/12" }, Ue = { class: "flex justify-start mb-1 w-7/12" };
734
+ function Me(s, e, o, h, c, l) {
735
+ const a = u("TournamentCardSkeleton"), d = u("BaseText"), b = u("Icon");
736
+ return m(), g(A, null, [
737
+ o.isLoading ? (m(), g("div", Ie, [
738
+ r(a)
739
+ ])) : x("", !0),
740
+ o.isLoading ? x("", !0) : (m(), g("div", {
741
+ key: 1,
742
+ class: "max-w-80 md:w-full mb-8 border border-secondary hover:border-accent hover:cursor-pointer p-2 rounded-lg",
743
+ onClick: e[2] || (e[2] = (...p) => l.onCardClick && l.onCardClick(...p))
744
+ }, [
655
745
  t("section", Le, [
656
746
  t("img", {
657
747
  src: l.image,
658
748
  alt: "Tournament Image",
659
749
  class: "w-full h-52 object-cover mb-2 rounded-md",
660
- onError: e[0] || (e[0] = (...y) => l.imageError && l.imageError(...y)),
661
- style: S(l.fallbackStyle)
662
- }, null, 44, Te),
663
- s(d, {
750
+ onError: e[0] || (e[0] = (...p) => l.imageError && l.imageError(...p)),
751
+ style: k(l.fallbackStyle)
752
+ }, null, 44, Qe),
753
+ r(d, {
664
754
  tag: "h3",
665
755
  size: "xl",
666
756
  weight: "semibold",
667
757
  class: "mb-1"
668
758
  }, {
669
- default: a(() => [
670
- i(b(l.title), 1)
759
+ default: n(() => [
760
+ i(f(l.title), 1)
671
761
  ]),
672
762
  _: 1
673
763
  }),
674
- s(d, {
764
+ r(d, {
675
765
  tag: "p",
676
766
  size: "sm",
677
767
  weight: "semibold",
678
768
  class: "mb-2"
679
769
  }, {
680
- default: a(() => [
681
- i(b(l.location), 1)
770
+ default: n(() => [
771
+ i(f(l.location), 1)
682
772
  ]),
683
773
  _: 1
684
774
  }),
685
- t("div", Fe, [
686
- t("span", Ke, [
687
- s(g, {
775
+ t("div", Ge, [
776
+ t("span", Te, [
777
+ r(b, {
688
778
  icon: "fa-calendar",
689
779
  color: "accent",
690
780
  size: "sm",
691
781
  class: "mr-3 w-4"
692
782
  })
693
783
  ]),
694
- s(d, {
784
+ r(d, {
695
785
  tag: "p",
696
786
  size: "sm",
697
787
  class: ""
698
788
  }, {
699
- default: a(() => [
700
- i(b(l.startDate) + " to " + b(l.endDate), 1)
789
+ default: n(() => [
790
+ i(f(l.startDate) + " to " + f(l.endDate), 1)
701
791
  ]),
702
792
  _: 1
703
793
  })
704
794
  ]),
705
- t("div", je, [
706
- t("span", Ge, [
707
- s(g, {
795
+ t("div", Fe, [
796
+ t("span", Ke, [
797
+ r(b, {
708
798
  icon: "fa-user-friends",
709
799
  color: "accent",
710
800
  size: "sm",
711
801
  class: "mr-3"
712
802
  })
713
803
  ]),
714
- s(d, {
804
+ r(d, {
715
805
  tag: "p",
716
806
  size: "sm",
717
807
  class: ""
718
808
  }, {
719
- default: a(() => [
720
- i(b(l.numberOfFencers) + " Registered Fencers", 1)
809
+ default: n(() => [
810
+ i(f(l.numberOfFencers) + " Registered Fencers", 1)
721
811
  ]),
722
812
  _: 1
723
813
  })
724
814
  ])
725
815
  ]),
726
- t("section", Ve, [
727
- t("div", _e, [
816
+ t("section", je, [
817
+ t("div", Ve, [
728
818
  t("img", {
729
819
  src: l.image,
730
820
  alt: "Tournament Image",
731
821
  class: "w-28 h-16 object-cover rounded-md",
732
- onError: e[1] || (e[1] = (...y) => l.imageError && l.imageError(...y)),
733
- style: S(l.fallbackStyle)
822
+ onError: e[1] || (e[1] = (...p) => l.imageError && l.imageError(...p)),
823
+ style: k(l.fallbackStyle)
734
824
  }, null, 44, Ye),
735
825
  t("div", Ne, [
736
- s(d, {
826
+ r(d, {
737
827
  tag: "h3",
738
828
  size: "lg",
739
829
  weight: "semibold",
740
830
  class: "mb-1"
741
831
  }, {
742
- default: a(() => [
743
- i(b(l.title), 1)
832
+ default: n(() => [
833
+ i(f(l.title), 1)
744
834
  ]),
745
835
  _: 1
746
836
  }),
747
- s(d, {
837
+ r(d, {
748
838
  tag: "p",
749
839
  size: "xs",
750
840
  weight: "semibold",
751
841
  class: "mb-1"
752
842
  }, {
753
- default: a(() => [
754
- i(b(l.location), 1)
843
+ default: n(() => [
844
+ i(f(l.location), 1)
755
845
  ]),
756
846
  _: 1
757
847
  })
758
848
  ])
759
849
  ]),
760
- t("div", De, [
761
- t("div", Ue, [
762
- s(g, {
850
+ t("div", _e, [
851
+ t("div", De, [
852
+ r(b, {
763
853
  icon: "fa-user-friends",
764
854
  color: "accent",
765
855
  size: "xs",
766
856
  class: "mr-1"
767
857
  }),
768
- s(d, {
858
+ r(d, {
769
859
  tag: "p",
770
860
  size: "xs",
771
861
  class: ""
772
862
  }, {
773
- default: a(() => [
774
- i(b(l.numberOfFencers) + " Registered", 1)
863
+ default: n(() => [
864
+ i(f(l.numberOfFencers) + " Registered", 1)
775
865
  ]),
776
866
  _: 1
777
867
  })
778
868
  ]),
779
- t("div", Me, [
780
- s(g, {
869
+ t("div", Ue, [
870
+ r(b, {
781
871
  icon: "fa-calendar",
782
872
  color: "accent",
783
873
  size: "xs",
784
874
  class: "mr-1 w-4"
785
875
  }),
786
- s(d, {
876
+ r(d, {
787
877
  tag: "p",
788
878
  size: "xs",
789
879
  class: ""
790
880
  }, {
791
- default: a(() => [
792
- i(b(l.startDate) + " to " + b(l.endDate), 1)
881
+ default: n(() => [
882
+ i(f(l.startDate) + " to " + f(l.endDate), 1)
793
883
  ]),
794
884
  _: 1
795
885
  })
@@ -799,19 +889,19 @@ function We(o, e, r, h, c, l) {
799
889
  ]))
800
890
  ], 64);
801
891
  }
802
- const z = /* @__PURE__ */ p(Ie, [["render", We]]), I = "data:image/png;base64,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", He = {
892
+ const We = /* @__PURE__ */ y(ze, [["render", Me]]), I = "data:image/png;base64,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", He = {
803
893
  name: "FencerCardSkeleton"
804
- }, Re = { class: "max-w-48 mr-4 md:mr-2 items-center animate-pulse" };
805
- function Ze(o, e, r, h, c, l) {
806
- return m(), f("section", Re, e[0] || (e[0] = [
894
+ }, Ze = { class: "max-w-48 mr-4 md:mr-2 items-center animate-pulse" };
895
+ function Re(s, e, o, h, c, l) {
896
+ return m(), g("section", Ze, e[0] || (e[0] = [
807
897
  E('<div class="flex flex-col m-auto justify-center mb-4 items-center w-[130px]"><div class="w-[120px] h-[120px] md:w-32 md:h-32 rounded-full bg-gray-300"></div></div><div class="flex flex-col md:flex-row justify-center md:justify-around -mt-2 border-b border-borderGray z-10 pb-2 mb-2"><div class="flex items-center justify-around w-full"><div class="w-8 h-4 bg-gray-300 rounded mr-1"></div><div class="w-8 h-4 bg-gray-300 rounded"></div></div></div><div class="text-center"><div class="w-32 h-6 bg-gray-300 rounded mb-2 mx-auto"></div><div class="w-40 h-4 bg-gray-200 rounded mb-2 mx-auto"></div></div>', 3)
808
898
  ]));
809
899
  }
810
- const Je = /* @__PURE__ */ p(He, [["render", Ze]]), Oe = {
900
+ const Oe = /* @__PURE__ */ y(He, [["render", Re]]), Je = {
811
901
  name: "FencerCard",
812
902
  components: {
813
- FencerCardSkeleton: Je,
814
- BaseText: x,
903
+ FencerCardSkeleton: Oe,
904
+ BaseText: w,
815
905
  defaultPortrait: I
816
906
  },
817
907
  props: {
@@ -831,6 +921,7 @@ const Je = /* @__PURE__ */ p(He, [["render", Ze]]), Oe = {
831
921
  data() {
832
922
  return {};
833
923
  },
924
+ emits: ["grid-card-click"],
834
925
  computed: {
835
926
  portrait() {
836
927
  return this.data.ProfileImage && this.data.ProfileImage.URL ? this.data.ProfileImage.URL : I;
@@ -842,133 +933,117 @@ const Je = /* @__PURE__ */ p(He, [["render", Ze]]), Oe = {
842
933
  return this.data.Club.Name;
843
934
  },
844
935
  m2Rating() {
845
- const o = this.data.M2Ratings.find((e) => e.WeaponId === 1);
846
- return o ? o.FormattedRating : "U";
847
- },
848
- hrRating() {
849
- return this.data.HEMARatings && this.data.HEMARatings[0] ? this.data.HEMARatings[0].Rating : 0;
936
+ const s = this.data.M2Ratings.find((e) => e.WeaponId === 1);
937
+ return s ? s.FormattedRating : "U";
938
+ }
939
+ },
940
+ methods: {
941
+ onCardClick() {
942
+ this.$emit("grid-card-click", this.data);
850
943
  }
851
944
  }
852
945
  }, Xe = {
853
946
  key: 0,
854
- class: "max-w-72 p-4 bg-secondary rounded-lg flex flex-col items-start"
855
- }, qe = {
856
- key: 1,
857
- class: "max-w-72 mr-4 md:mr-2 items-center"
858
- }, Pe = { class: "flex flex-col m-auto justify-center mb-4 items-center w-[130px]" }, $e = ["src"], et = { class: "flex flex-col md:flex-row justify-center md:justify-around -mt-2 border-b border-borderGray z-10 pb-2 mb-2" }, tt = { class: "flex items-center justify-center" }, st = { class: "hidden md:flex items-center justify-center" };
859
- function rt(o, e, r, h, c, l) {
860
- const n = u("FencerCardSkeleton"), d = u("BaseText");
861
- return m(), f(A, null, [
862
- r.isLoading ? (m(), f("div", Xe, [
863
- s(n)
864
- ])) : w("", !0),
865
- r.isLoading ? w("", !0) : (m(), f("section", qe, [
866
- t("div", Pe, [
947
+ class: "max-w-72 p-2 bg-secondary rounded-lg flex flex-col items-start"
948
+ }, qe = { class: "flex flex-col m-auto justify-center mb-4 items-center w-[130px]" }, Pe = ["src"], $e = { class: "flex flex-col md:flex-row justify-center md:justify-around -mt-2 border-b border-borderGray z-10 pb-2 mb-2" }, et = { class: "flex items-center justify-center" };
949
+ function tt(s, e, o, h, c, l) {
950
+ const a = u("FencerCardSkeleton"), d = u("BaseText");
951
+ return m(), g(A, null, [
952
+ o.isLoading ? (m(), g("div", Xe, [
953
+ r(a)
954
+ ])) : x("", !0),
955
+ o.isLoading ? x("", !0) : (m(), g("section", {
956
+ key: 1,
957
+ class: "max-w-72 mr-4 md:mr-2 pt-4 items-center border border-secondary hover:border-accent hover:cursor-pointer rounded-lg",
958
+ onClick: e[0] || (e[0] = (...b) => l.onCardClick && l.onCardClick(...b))
959
+ }, [
960
+ t("div", qe, [
867
961
  t("img", {
868
962
  src: l.portrait,
869
963
  alt: "Fencer Portrait",
870
964
  class: "w-[120px] h-[120px] md:w-32 md:h-32 rounded-full object-cover z-1 flex-shrink-0"
871
- }, null, 8, $e)
965
+ }, null, 8, Pe)
872
966
  ]),
873
- t("div", et, [
874
- t("div", tt, [
875
- s(d, {
967
+ t("div", $e, [
968
+ t("div", et, [
969
+ r(d, {
876
970
  tag: "p",
877
971
  size: "xs md:sm",
878
972
  weight: "semibold",
879
973
  class: "primary mr-1 block z-50"
880
974
  }, {
881
- default: a(() => e[0] || (e[0] = [
975
+ default: n(() => e[1] || (e[1] = [
882
976
  i("M2: ")
883
977
  ])),
884
978
  _: 1
885
979
  }),
886
- s(d, {
980
+ r(d, {
887
981
  tag: "p",
888
982
  size: "sm md:md",
889
983
  weight: "bold",
890
984
  class: "text-accent"
891
985
  }, {
892
- default: a(() => [
893
- i(b(l.m2Rating), 1)
986
+ default: n(() => [
987
+ i(f(l.m2Rating), 1)
894
988
  ]),
895
989
  _: 1
896
990
  })
897
- ]),
898
- t("div", st, [
899
- s(d, {
900
- tag: "p",
901
- size: "md",
902
- weight: "bold",
903
- class: "text-accent"
904
- }, {
905
- default: a(() => [
906
- i(b(l.hrRating), 1)
907
- ]),
908
- _: 1
909
- }),
910
- s(d, {
911
- tag: "p",
912
- size: "sm",
913
- weight: "semibold",
914
- class: "primary mr-1"
915
- }, {
916
- default: a(() => e[1] || (e[1] = [
917
- i(":HR")
918
- ])),
919
- _: 1
920
- })
921
991
  ])
922
992
  ]),
923
- s(d, {
993
+ r(d, {
924
994
  tag: "h3",
925
- size: "sm md:xl",
926
- weight: "semibold",
927
- class: "text-center"
995
+ size: "sm md:2xl",
996
+ weight: "bold",
997
+ class: "text-center pb-1"
928
998
  }, {
929
- default: a(() => [
930
- i(b(l.displayName), 1)
999
+ default: n(() => [
1000
+ i(f(l.displayName), 1)
931
1001
  ]),
932
1002
  _: 1
933
1003
  }),
934
- s(d, {
1004
+ r(d, {
935
1005
  tag: "p",
936
1006
  size: "xs md:sm",
937
1007
  weight: "normal",
938
1008
  class: "text-center h-10"
939
1009
  }, {
940
- default: a(() => [
941
- i(b(l.clubName), 1)
1010
+ default: n(() => [
1011
+ i(f(l.clubName), 1)
942
1012
  ]),
943
1013
  _: 1
944
1014
  })
945
1015
  ]))
946
1016
  ], 64);
947
1017
  }
948
- const k = /* @__PURE__ */ p(Oe, [["render", rt]]), ot = {
1018
+ const L = /* @__PURE__ */ y(Je, [["render", tt]]), rt = {
949
1019
  name: "ArticleCardSkeleton"
950
- }, lt = { class: "w-full bg-secondary rounded-lg flex flex-col items-start animate-pulse" };
951
- function nt(o, e, r, h, c, l) {
952
- return m(), f("div", lt, e[0] || (e[0] = [
1020
+ }, st = { class: "w-full bg-secondary rounded-lg flex flex-col items-start animate-pulse" };
1021
+ function lt(s, e, o, h, c, l) {
1022
+ return m(), g("div", st, e[0] || (e[0] = [
953
1023
  E('<div class="w-full h-40 bg-gray-200 rounded-t-md mb-4"></div><div class="w-3/4 h-6 bg-gray-200 rounded mb-2"></div><div class="w-full h-4 bg-gray-200 rounded mb-2"></div><div class="w-full h-4 bg-gray-200 rounded mb-2"></div><div class="w-1/2 h-4 bg-gray-200 rounded mb-4"></div><div class="w-full flex justify-end"><div class="w-1/4 h-4 bg-gray-200 rounded"></div></div>', 6)
954
1024
  ]));
955
1025
  }
956
- const at = /* @__PURE__ */ p(ot, [["render", nt]]), it = {
1026
+ const ot = /* @__PURE__ */ y(rt, [["render", lt]]), at = {
957
1027
  name: "ArticleCard",
958
1028
  components: {
959
- ArticleCardSkeleton: at,
960
- BaseText: x
1029
+ ArticleCardSkeleton: ot,
1030
+ BaseText: w
961
1031
  },
962
1032
  props: {
963
1033
  data: {
964
1034
  type: Object,
965
1035
  required: !0
966
1036
  },
1037
+ index: {
1038
+ type: Number,
1039
+ required: !0
1040
+ },
967
1041
  isLoading: {
968
1042
  type: Boolean,
969
1043
  default: !1
970
1044
  }
971
1045
  },
1046
+ emits: ["grid-card-click"],
972
1047
  computed: {
973
1048
  image() {
974
1049
  return this.data.image;
@@ -982,62 +1057,62 @@ const at = /* @__PURE__ */ p(ot, [["render", nt]]), it = {
982
1057
  },
983
1058
  methods: {
984
1059
  onReadMore() {
985
- this.$emit("read-more");
1060
+ this.$emit("grid-card-click", this.data);
986
1061
  }
987
1062
  }
988
- }, dt = {
1063
+ }, nt = {
989
1064
  key: 0,
990
1065
  class: "w-72 p-4 bg-secondary rounded-lg flex flex-col items-start"
991
- }, ct = {
1066
+ }, it = {
992
1067
  key: 1,
993
1068
  class: "min-w-72 p-4 bg-secondary rounded-lg flex flex-col items-start"
994
- }, ut = ["src"];
995
- function mt(o, e, r, h, c, l) {
996
- const n = u("ArticleCardSkeleton"), d = u("BaseText");
997
- return m(), f(A, null, [
998
- r.isLoading ? (m(), f("div", dt, [
999
- s(n)
1000
- ])) : w("", !0),
1001
- r.isLoading ? w("", !0) : (m(), f("div", ct, [
1069
+ }, dt = ["src"];
1070
+ function ct(s, e, o, h, c, l) {
1071
+ const a = u("ArticleCardSkeleton"), d = u("BaseText");
1072
+ return m(), g(A, null, [
1073
+ o.isLoading ? (m(), g("div", nt, [
1074
+ r(a)
1075
+ ])) : x("", !0),
1076
+ o.isLoading ? x("", !0) : (m(), g("div", it, [
1002
1077
  t("img", {
1003
1078
  src: l.image,
1004
1079
  alt: "Article Image",
1005
1080
  class: "w-full h-40 object-cover rounded-t-md mb-4"
1006
- }, null, 8, ut),
1007
- s(d, {
1081
+ }, null, 8, dt),
1082
+ r(d, {
1008
1083
  tag: "h3",
1009
1084
  size: "xl",
1010
- weight: "semibold",
1085
+ weight: "bold",
1011
1086
  class: "mb-2"
1012
1087
  }, {
1013
- default: a(() => [
1014
- i(b(l.articleTitle), 1)
1088
+ default: n(() => [
1089
+ i(f(l.articleTitle), 1)
1015
1090
  ]),
1016
1091
  _: 1
1017
1092
  }),
1018
- s(d, {
1093
+ r(d, {
1019
1094
  tag: "p",
1020
1095
  size: "sm",
1021
1096
  weight: "normal",
1022
1097
  class: "mb-4 h-20"
1023
1098
  }, {
1024
- default: a(() => [
1025
- i(b(l.truncatedDescription), 1)
1099
+ default: n(() => [
1100
+ i(f(l.truncatedDescription), 1)
1026
1101
  ]),
1027
1102
  _: 1
1028
1103
  }),
1029
1104
  t("a", {
1030
1105
  href: "#",
1031
- onClick: e[0] || (e[0] = Y((...g) => l.onReadMore && l.onReadMore(...g), ["prevent"])),
1106
+ onClick: e[0] || (e[0] = F((...b) => l.onReadMore && l.onReadMore(...b), ["prevent"])),
1032
1107
  class: "w-full flex justify-end pr-2"
1033
1108
  }, [
1034
- s(d, {
1109
+ r(d, {
1035
1110
  tag: "p",
1036
1111
  size: "sm",
1037
- weight: "simibold",
1112
+ weight: "bold",
1038
1113
  class: "mb-4 border-b border-secondary hover:border-accent"
1039
1114
  }, {
1040
- default: a(() => e[1] || (e[1] = [
1115
+ default: n(() => e[1] || (e[1] = [
1041
1116
  i("Read More →")
1042
1117
  ])),
1043
1118
  _: 1
@@ -1046,11 +1121,11 @@ function mt(o, e, r, h, c, l) {
1046
1121
  ]))
1047
1122
  ], 64);
1048
1123
  }
1049
- const Q = /* @__PURE__ */ p(it, [["render", mt]]), gt = {
1124
+ const Q = /* @__PURE__ */ y(at, [["render", ct]]), ut = {
1050
1125
  name: "GridLayout",
1051
1126
  components: {
1052
- BaseButton: v,
1053
- BaseText: x
1127
+ BaseButton: B,
1128
+ BaseText: w
1054
1129
  },
1055
1130
  props: {
1056
1131
  title: {
@@ -1063,7 +1138,8 @@ const Q = /* @__PURE__ */ p(it, [["render", mt]]), gt = {
1063
1138
  },
1064
1139
  cardComponent: {
1065
1140
  type: [Object, String],
1066
- required: !0
1141
+ required: !0,
1142
+ default: () => j({})
1067
1143
  },
1068
1144
  items: {
1069
1145
  type: Array,
@@ -1078,15 +1154,28 @@ const Q = /* @__PURE__ */ p(it, [["render", mt]]), gt = {
1078
1154
  type: Boolean,
1079
1155
  default: !1
1080
1156
  },
1157
+ whiteStyle: {
1158
+ type: Boolean,
1159
+ default: !1
1160
+ },
1081
1161
  isLoading: {
1082
1162
  type: Boolean,
1083
1163
  default: !1
1084
1164
  }
1085
1165
  },
1166
+ emits: ["grid-click", "grid-card-click"],
1086
1167
  computed: {
1168
+ topClasses() {
1169
+ let s = "max-w-[1200px] mx-auto overflow-x-auto";
1170
+ return this.whiteStyle && (s = "w-full md:mr-10 mt-10"), s;
1171
+ },
1172
+ headerClasses() {
1173
+ let s = "w-full flex py-4 md:pb-10 ml-2 md:ml-0";
1174
+ return this.whiteStyle || (s = `${s} justify-center`), s;
1175
+ },
1087
1176
  gridClasses() {
1088
- let o = "md:grid md:gap-x-6 md:gap-y-4";
1089
- this.mobileHorizontal && (o = `${o} flex overflow-x-auto`);
1177
+ let s = "md:grid md:gap-x-6 md:gap-y-4";
1178
+ this.mobileHorizontal && (s = "flex space-x-4 md:grid md:gap-x-6 md:gap-y-4"), this.whiteStyle && (s = "bg-white p-2 mx-2 md:mx-0 rounded-lg");
1090
1179
  let e;
1091
1180
  switch (this.maxColumns) {
1092
1181
  case 1:
@@ -1107,55 +1196,72 @@ const Q = /* @__PURE__ */ p(it, [["render", mt]]), gt = {
1107
1196
  default:
1108
1197
  e = "grid-cols-1 md:grid-cols-2 lg:grid-cols-3";
1109
1198
  }
1110
- return `${o} ${e}`;
1199
+ return `${s} ${e}`;
1200
+ }
1201
+ },
1202
+ methods: {
1203
+ onClick() {
1204
+ this.$emit("grid-click");
1205
+ },
1206
+ handleCardClick(s) {
1207
+ this.$emit("grid-card-click", s);
1111
1208
  }
1112
1209
  }
1113
- }, ft = { class: "max-w-[1200px] mx-auto" }, bt = { class: "w-full flex justify-center py-4 md:pb-10 md:pt-14" }, ht = { class: "w-full flex justify-center pb-28 pt-10 md:pt-14" };
1114
- function pt(o, e, r, h, c, l) {
1115
- const n = u("BaseText"), d = u("BaseButton");
1116
- return m(), f(A, null, [
1117
- t("section", ft, [
1118
- t("div", bt, [
1119
- s(n, {
1210
+ }, mt = {
1211
+ key: 0,
1212
+ class: "w-full flex justify-center pb-28 pt-10 md:pt-14"
1213
+ };
1214
+ function gt(s, e, o, h, c, l) {
1215
+ const a = u("BaseText"), d = u("BaseButton");
1216
+ return m(), g(A, null, [
1217
+ t("section", {
1218
+ class: v(l.topClasses)
1219
+ }, [
1220
+ t("div", {
1221
+ class: v(l.headerClasses)
1222
+ }, [
1223
+ r(a, {
1120
1224
  color: "primary",
1121
- size: "2xl",
1225
+ size: "xl",
1122
1226
  tag: "h3",
1123
1227
  weight: "bold"
1124
1228
  }, {
1125
- default: a(() => [
1126
- i(b(r.title), 1)
1229
+ default: n(() => [
1230
+ i(f(o.title), 1)
1127
1231
  ]),
1128
1232
  _: 1
1129
1233
  })
1130
- ]),
1234
+ ], 2),
1131
1235
  t("div", {
1132
- class: C(l.gridClasses)
1236
+ class: v(l.gridClasses)
1133
1237
  }, [
1134
- (m(!0), f(A, null, N(r.items, (g, y) => (m(), L(T(r.cardComponent), {
1135
- key: y,
1136
- data: g,
1137
- index: y,
1138
- isLoading: r.isLoading
1139
- }, null, 8, ["data", "index", "isLoading"]))), 128))
1238
+ (m(!0), g(A, null, K(o.items, (b, p) => (m(), G(T(o.cardComponent), {
1239
+ key: p,
1240
+ data: b,
1241
+ index: p,
1242
+ isLoading: o.isLoading,
1243
+ onGridCardClick: l.handleCardClick
1244
+ }, null, 40, ["data", "index", "isLoading", "onGridCardClick"]))), 128))
1140
1245
  ], 2)
1141
- ]),
1142
- t("div", ht, [
1143
- s(d, {
1246
+ ], 2),
1247
+ !o.whiteStyle && o.moreButtonLabel ? (m(), g("div", mt, [
1248
+ r(d, {
1144
1249
  backgroundColor: "secondary",
1145
1250
  border: "primary",
1146
1251
  size: "xs",
1147
1252
  color: "primary",
1148
1253
  hoverColor: "secondary",
1149
- label: r.moreButtonLabel
1150
- }, null, 8, ["label"])
1151
- ])
1254
+ label: o.moreButtonLabel,
1255
+ onClick: l.onClick
1256
+ }, null, 8, ["label", "onClick"])
1257
+ ])) : x("", !0)
1152
1258
  ], 64);
1153
1259
  }
1154
- const yt = /* @__PURE__ */ p(gt, [["render", pt]]), xt = {
1260
+ const bt = /* @__PURE__ */ y(ut, [["render", gt]]), ft = {
1155
1261
  name: "SingleButtonBanner",
1156
1262
  components: {
1157
- BaseText: x,
1158
- BaseButton: v
1263
+ BaseText: w,
1264
+ BaseButton: B
1159
1265
  },
1160
1266
  props: {
1161
1267
  imageUrl: {
@@ -1177,24 +1283,24 @@ const yt = /* @__PURE__ */ p(gt, [["render", pt]]), xt = {
1177
1283
  this.$emit("button-click");
1178
1284
  }
1179
1285
  }
1180
- }, wt = { class: "flex flex-col justify-center items-center md:items-start h-full w-full text-center md:text-left px-6 md:px-20" };
1181
- function At(o, e, r, h, c, l) {
1182
- const n = u("BaseText"), d = u("BaseButton");
1183
- return m(), f("section", {
1184
- class: "relative bg-cover bg-center h-80 max-w-[1200px] mx-auto rounded-lg overflow-hidden mb-10",
1185
- style: S({ backgroundImage: "url(" + r.imageUrl + ")" })
1286
+ }, ht = { class: "flex flex-col justify-center items-center md:items-start h-full w-full text-center md:text-left px-6 md:px-20" };
1287
+ function yt(s, e, o, h, c, l) {
1288
+ const a = u("BaseText"), d = u("BaseButton");
1289
+ return m(), g("section", {
1290
+ class: "relative bg-cover bg-top h-80 max-w-[1200px] mx-auto rounded-lg overflow-hidden mb-10",
1291
+ style: k({ backgroundImage: "url(" + o.imageUrl + ")" })
1186
1292
  }, [
1187
- t("div", wt, [
1188
- s(n, {
1293
+ t("div", ht, [
1294
+ r(a, {
1189
1295
  color: "secondary",
1190
1296
  tag: "h3",
1191
1297
  size: "5xl",
1192
1298
  weight: "normal",
1193
1299
  class: "mb-8",
1194
- innerHTML: r.description
1300
+ innerHTML: o.description
1195
1301
  }, null, 8, ["innerHTML"]),
1196
- s(d, {
1197
- label: r.buttonLabel,
1302
+ r(d, {
1303
+ label: o.buttonLabel,
1198
1304
  size: "xs",
1199
1305
  color: "secondary",
1200
1306
  border: "gradient1",
@@ -1204,11 +1310,11 @@ function At(o, e, r, h, c, l) {
1204
1310
  ])
1205
1311
  ], 4);
1206
1312
  }
1207
- const vt = /* @__PURE__ */ p(xt, [["render", At]]), Ct = {
1313
+ const pt = /* @__PURE__ */ y(ft, [["render", yt]]), xt = {
1208
1314
  name: "DoubleButtonBanner",
1209
1315
  components: {
1210
- BaseText: x,
1211
- BaseButton: v
1316
+ BaseText: w,
1317
+ BaseButton: B
1212
1318
  },
1213
1319
  props: {
1214
1320
  imageSrc: {
@@ -1219,6 +1325,10 @@ const vt = /* @__PURE__ */ p(xt, [["render", At]]), Ct = {
1219
1325
  type: String,
1220
1326
  required: !0
1221
1327
  },
1328
+ description: {
1329
+ type: String,
1330
+ default: ""
1331
+ },
1222
1332
  buttonLabelOne: {
1223
1333
  type: String,
1224
1334
  required: !0
@@ -1236,36 +1346,36 @@ const vt = /* @__PURE__ */ p(xt, [["render", At]]), Ct = {
1236
1346
  this.$emit("button-click-one");
1237
1347
  }
1238
1348
  }
1239
- }, Bt = { class: "max-w-[1200px] mx-auto" }, St = { class: "relative w-full h-3/4 flex justify-center bg-primary m-0" }, Et = { class: "relative w-full border-b border-l border-r border-lineGrey" }, zt = { class: "hidden md:flex h-80 justify-between items-center p-14" }, It = { class: "text-left text-white max-w-lg w-96" }, kt = { class: "flex flex-col w-1/3 align-right" }, Qt = { class: "flex justify-center md:hidden text-left bg-primary w-full" }, Lt = { class: "w-full px-6 py-8 text-center flex flex-col justify-center items-center" };
1240
- function Tt(o, e, r, h, c, l) {
1241
- const n = u("BaseText"), d = u("BaseButton");
1242
- return m(), f("section", Bt, [
1349
+ }, wt = { class: "max-w-[1200px] mx-auto" }, Ct = { class: "relative w-full h-3/4 flex justify-center bg-primary m-0" }, vt = { class: "relative w-full border-b border-l border-r border-lineGrey" }, At = { class: "hidden md:flex h-80 justify-between items-center p-14" }, Bt = { class: "text-left text-white max-w-lg w-96" }, St = { class: "flex flex-col w-1/3 align-right" }, kt = { class: "flex justify-center md:hidden text-left bg-primary w-full" }, Et = { class: "w-full px-6 py-8 text-center flex flex-col justify-center items-center" };
1350
+ function zt(s, e, o, h, c, l) {
1351
+ const a = u("BaseText"), d = u("BaseButton");
1352
+ return m(), g("section", wt, [
1243
1353
  e[2] || (e[2] = t("section", { class: "hidden md:flex border-t border-lineGrey w-full bg-primary" }, [
1244
1354
  t("div", { class: "w-[150px] h-[150px] bg-primary border-b border-lineGrey flex-shrink-0" }),
1245
1355
  t("div", { class: "flex-grow h-[150px] border-b border-l border-r border-lineGrey" }),
1246
1356
  t("div", { class: "w-[150px] h-[150px] bg-primary border-b border-lineGrey flex-shrink-0" })
1247
1357
  ], -1)),
1248
- t("section", St, [
1358
+ t("section", Ct, [
1249
1359
  e[0] || (e[0] = t("div", { class: "w-[150px] bg-primary border-b border-lineGrey flex-shrink-0" }, null, -1)),
1250
- t("div", Et, [
1251
- t("section", zt, [
1252
- t("div", It, [
1253
- s(n, {
1360
+ t("div", vt, [
1361
+ t("section", At, [
1362
+ t("div", Bt, [
1363
+ r(a, {
1254
1364
  color: "secondary",
1255
1365
  tag: "h1",
1256
1366
  size: "5xl",
1257
1367
  weight: "semibold",
1258
1368
  class: "mb-4"
1259
1369
  }, {
1260
- default: a(() => [
1261
- i(b(r.title), 1)
1370
+ default: n(() => [
1371
+ i(f(o.title), 1)
1262
1372
  ]),
1263
1373
  _: 1
1264
1374
  })
1265
1375
  ]),
1266
- t("div", kt, [
1267
- s(d, {
1268
- label: r.buttonLabelOne,
1376
+ t("div", St, [
1377
+ r(d, {
1378
+ label: o.buttonLabelOne,
1269
1379
  size: "xs",
1270
1380
  color: "secondary",
1271
1381
  border: "gradient1",
@@ -1278,8 +1388,8 @@ function Tt(o, e, r, h, c, l) {
1278
1388
  iconType: "fa-thin",
1279
1389
  onClick: l.onClickOne
1280
1390
  }, null, 8, ["label", "onClick"]),
1281
- s(d, {
1282
- label: r.buttonLabelTwo,
1391
+ r(d, {
1392
+ label: o.buttonLabelTwo,
1283
1393
  size: "xs",
1284
1394
  color: "secondary",
1285
1395
  border: "gradient2",
@@ -1302,34 +1412,34 @@ function Tt(o, e, r, h, c, l) {
1302
1412
  t("div", { class: "flex-grow h-[150px] border-b border-l border-r border-lineGrey" }),
1303
1413
  t("div", { class: "w-[150px] h-[150px] bg-primary border-b border-lineGrey flex-shrink-0" })
1304
1414
  ], -1)),
1305
- t("section", Qt, [
1306
- t("div", Lt, [
1307
- s(n, {
1415
+ t("section", kt, [
1416
+ t("div", Et, [
1417
+ r(a, {
1308
1418
  color: "secondary",
1309
1419
  tag: "h1",
1310
1420
  size: "2xl",
1311
1421
  weight: "bold",
1312
1422
  class: "mb-2"
1313
1423
  }, {
1314
- default: a(() => [
1315
- i(b(r.title), 1)
1424
+ default: n(() => [
1425
+ i(f(o.title), 1)
1316
1426
  ]),
1317
1427
  _: 1
1318
1428
  }),
1319
- s(n, {
1429
+ r(a, {
1320
1430
  color: "secondary",
1321
1431
  tag: "p",
1322
1432
  size: "sm",
1323
1433
  weight: "normal",
1324
1434
  class: "mb-6"
1325
1435
  }, {
1326
- default: a(() => [
1327
- i(b(o.description), 1)
1436
+ default: n(() => [
1437
+ i(f(o.description), 1)
1328
1438
  ]),
1329
1439
  _: 1
1330
1440
  }),
1331
- s(d, {
1332
- label: r.buttonLabelOne,
1441
+ r(d, {
1442
+ label: o.buttonLabelOne,
1333
1443
  size: "xs",
1334
1444
  color: "secondary",
1335
1445
  border: "gradient1",
@@ -1342,8 +1452,8 @@ function Tt(o, e, r, h, c, l) {
1342
1452
  iconType: "fa-thin",
1343
1453
  onClick: l.onClickOne
1344
1454
  }, null, 8, ["label", "onClick"]),
1345
- s(d, {
1346
- label: r.buttonLabelTwo,
1455
+ r(d, {
1456
+ label: o.buttonLabelTwo,
1347
1457
  size: "xs",
1348
1458
  color: "secondary",
1349
1459
  border: "gradient2",
@@ -1360,157 +1470,157 @@ function Tt(o, e, r, h, c, l) {
1360
1470
  ])
1361
1471
  ]);
1362
1472
  }
1363
- const Ft = /* @__PURE__ */ p(Ct, [["render", Tt]]), Kt = {
1473
+ const It = /* @__PURE__ */ y(xt, [["render", zt]]), Lt = {
1364
1474
  name: "Footer",
1365
- components: { Icon: B, InputField: F, BaseButton: v, BaseText: x },
1475
+ components: { Icon: S, InputField: V, BaseButton: B, BaseText: w },
1366
1476
  data() {
1367
1477
  return {
1368
- logo: K
1478
+ logo: Y
1369
1479
  };
1370
1480
  }
1371
- }, jt = { class: "hidden md:flex flex-col bg-primary" }, Gt = { class: "w-full hidden md:flex" }, Vt = { class: "w-1/3" }, _t = { class: "items-center w-full flex justify-center" }, Yt = ["src"], Nt = { class: "w-1/3 flex flex-col" }, Dt = { class: "w-full flex justify-around" }, Ut = { class: "flex w-1/3" }, Mt = { class: "flex w-1/3" }, Wt = { class: "flex items-center w-1/3" }, Ht = { class: "w-full flex justify-around" }, Rt = { class: "flex items-center w-1/3" }, Zt = { class: "flex items-center w-1/3" }, Jt = { class: "flex items-center w-1/3" }, Ot = { class: "w-full flex justify-around" }, Xt = { class: "flex items-center w-1/3" }, qt = { class: "flex items-center w-1/3" }, Pt = { class: "flex w-1/3" }, $t = { class: "w-1/3 flex flex-col" }, es = { class: "w-full flex justify-end" }, ts = { class: "w-30 mr-16" }, ss = { class: "w-full flex justify-end mt-12" }, rs = { class: "w-48 mr-16" }, os = { class: "h-32 border border-t mt-10 pb-10 border-lineGrey flex flex-col justify-center items-center" }, ls = { class: "flex md:hidden flex-col items-center bg-primary pb-10" }, ns = { class: "w-full flex flex-col items-center" }, as = { class: "w-full max-w-xs flex justify-between items-center" }, is = { class: "flex justify-center w-1/2" }, ds = ["src"], cs = { class: "flex flex-col w-1/2" }, us = { class: "w-full flex flex-col items-center" }, ms = { class: "w-full max-w-xs flex flex-col items-center pt-8" }, gs = { class: "w-full max-w-xs flex flex-col items-center pt-8" }, fs = { class: "flex justify-center" };
1372
- function bs(o, e, r, h, c, l) {
1373
- const n = u("BaseText"), d = u("InputField"), g = u("Icon");
1374
- return m(), f(A, null, [
1375
- t("section", jt, [
1481
+ }, Qt = { class: "hidden md:flex flex-col bg-primary" }, Gt = { class: "w-full hidden md:flex" }, Tt = { class: "w-1/3" }, Ft = { class: "items-center w-full flex justify-center" }, Kt = ["src"], jt = { class: "w-1/3 flex flex-col" }, Vt = { class: "w-full flex justify-around" }, Yt = { class: "flex w-1/3" }, Nt = { class: "flex w-1/3" }, _t = { class: "flex items-center w-1/3" }, Dt = { class: "w-full flex justify-around" }, Ut = { class: "flex items-center w-1/3" }, Mt = { class: "flex items-center w-1/3" }, Wt = { class: "flex items-center w-1/3" }, Ht = { class: "w-full flex justify-around" }, Zt = { class: "flex items-center w-1/3" }, Rt = { class: "flex items-center w-1/3" }, Ot = { class: "flex w-1/3" }, Jt = { class: "w-1/3 flex flex-col" }, Xt = { class: "w-full flex justify-end" }, qt = { class: "w-30 mr-16" }, Pt = { class: "w-full flex justify-end mt-12" }, $t = { class: "w-48 mr-16" }, er = { class: "h-32 border border-t mt-10 pb-10 border-lineGrey flex flex-col justify-center items-center" }, tr = { class: "flex md:hidden flex-col items-center bg-primary pb-10" }, rr = { class: "w-full flex flex-col items-center" }, sr = { class: "w-full max-w-xs flex justify-between items-center" }, lr = { class: "flex justify-center w-1/2" }, or = ["src"], ar = { class: "flex flex-col w-1/2" }, nr = { class: "w-full flex flex-col items-center" }, ir = { class: "w-full max-w-xs flex flex-col items-center pt-8" }, dr = { class: "w-full max-w-xs flex flex-col items-center pt-8" }, cr = { class: "flex justify-center" };
1482
+ function ur(s, e, o, h, c, l) {
1483
+ const a = u("BaseText"), d = u("InputField"), b = u("Icon");
1484
+ return m(), g(A, null, [
1485
+ t("section", Qt, [
1376
1486
  e[12] || (e[12] = t("div", { class: "h-20" }, null, -1)),
1377
1487
  t("section", Gt, [
1378
- t("div", Vt, [
1379
- t("div", _t, [
1488
+ t("div", Tt, [
1489
+ t("div", Ft, [
1380
1490
  t("img", {
1381
1491
  src: c.logo,
1382
1492
  alt: "Logo",
1383
1493
  class: "w-[71px] h-[56px]"
1384
- }, null, 8, Yt)
1494
+ }, null, 8, Kt)
1385
1495
  ])
1386
1496
  ]),
1387
- t("div", Nt, [
1388
- t("div", Dt, [
1389
- t("div", Ut, [
1390
- s(n, {
1497
+ t("div", jt, [
1498
+ t("div", Vt, [
1499
+ t("div", Yt, [
1500
+ r(a, {
1391
1501
  color: "secondary",
1392
1502
  size: "md",
1393
1503
  tag: "p",
1394
1504
  weight: "normal",
1395
1505
  class: "pb-2"
1396
1506
  }, {
1397
- default: a(() => e[0] || (e[0] = [
1507
+ default: n(() => e[0] || (e[0] = [
1398
1508
  i("Tournaments")
1399
1509
  ])),
1400
1510
  _: 1
1401
1511
  })
1402
1512
  ]),
1403
- t("div", Mt, [
1404
- s(n, {
1513
+ t("div", Nt, [
1514
+ r(a, {
1405
1515
  color: "secondary",
1406
1516
  size: "md",
1407
1517
  tag: "p",
1408
1518
  weight: "normal",
1409
1519
  class: "pb-2"
1410
1520
  }, {
1411
- default: a(() => e[1] || (e[1] = [
1521
+ default: n(() => e[1] || (e[1] = [
1412
1522
  i("Clubs")
1413
1523
  ])),
1414
1524
  _: 1
1415
1525
  })
1416
1526
  ]),
1417
- t("div", Wt, [
1418
- s(n, {
1527
+ t("div", _t, [
1528
+ r(a, {
1419
1529
  color: "secondary",
1420
1530
  size: "md",
1421
1531
  tag: "p",
1422
1532
  weight: "normal",
1423
1533
  class: "pb-2"
1424
1534
  }, {
1425
- default: a(() => e[2] || (e[2] = [
1535
+ default: n(() => e[2] || (e[2] = [
1426
1536
  i("Leaderboard")
1427
1537
  ])),
1428
1538
  _: 1
1429
1539
  })
1430
1540
  ])
1431
1541
  ]),
1432
- t("div", Ht, [
1433
- t("div", Rt, [
1434
- s(n, {
1542
+ t("div", Dt, [
1543
+ t("div", Ut, [
1544
+ r(a, {
1435
1545
  color: "secondary",
1436
1546
  size: "sm",
1437
1547
  tag: "p",
1438
1548
  weight: "thin",
1439
1549
  class: "pb-2"
1440
1550
  }, {
1441
- default: a(() => e[3] || (e[3] = [
1551
+ default: n(() => e[3] || (e[3] = [
1442
1552
  i("Upcoming")
1443
1553
  ])),
1444
1554
  _: 1
1445
1555
  })
1446
1556
  ]),
1447
- t("div", Zt, [
1448
- s(n, {
1557
+ t("div", Mt, [
1558
+ r(a, {
1449
1559
  color: "secondary",
1450
1560
  size: "sm",
1451
1561
  tag: "p",
1452
1562
  weight: "thin",
1453
1563
  class: "pb-2"
1454
1564
  }, {
1455
- default: a(() => e[4] || (e[4] = [
1565
+ default: n(() => e[4] || (e[4] = [
1456
1566
  i("Club List")
1457
1567
  ])),
1458
1568
  _: 1
1459
1569
  })
1460
1570
  ]),
1461
- t("div", Jt, [
1462
- s(n, {
1571
+ t("div", Wt, [
1572
+ r(a, {
1463
1573
  color: "secondary",
1464
1574
  size: "sm",
1465
1575
  tag: "p",
1466
1576
  weight: "thin",
1467
1577
  class: "pb-2"
1468
1578
  }, {
1469
- default: a(() => e[5] || (e[5] = [
1579
+ default: n(() => e[5] || (e[5] = [
1470
1580
  i("Top Fencers")
1471
1581
  ])),
1472
1582
  _: 1
1473
1583
  })
1474
1584
  ])
1475
1585
  ]),
1476
- t("div", Ot, [
1477
- t("div", Xt, [
1478
- s(n, {
1586
+ t("div", Ht, [
1587
+ t("div", Zt, [
1588
+ r(a, {
1479
1589
  color: "secondary",
1480
1590
  size: "sm",
1481
1591
  tag: "p",
1482
1592
  weight: "thin",
1483
1593
  class: "pb-2"
1484
1594
  }, {
1485
- default: a(() => e[6] || (e[6] = [
1595
+ default: n(() => e[6] || (e[6] = [
1486
1596
  i("Past")
1487
1597
  ])),
1488
1598
  _: 1
1489
1599
  })
1490
1600
  ]),
1491
- t("div", qt, [
1492
- s(n, {
1601
+ t("div", Rt, [
1602
+ r(a, {
1493
1603
  color: "secondary",
1494
1604
  size: "sm",
1495
1605
  tag: "p",
1496
1606
  weight: "thin",
1497
1607
  class: "pb-2"
1498
1608
  }, {
1499
- default: a(() => e[7] || (e[7] = [
1609
+ default: n(() => e[7] || (e[7] = [
1500
1610
  i("Local Clubs")
1501
1611
  ])),
1502
1612
  _: 1
1503
1613
  })
1504
1614
  ]),
1505
- t("div", Pt, [
1506
- s(n, {
1615
+ t("div", Ot, [
1616
+ r(a, {
1507
1617
  color: "secondary",
1508
1618
  size: "sm",
1509
1619
  tag: "p",
1510
1620
  weight: "thin",
1511
1621
  class: "pb-2"
1512
1622
  }, {
1513
- default: a(() => e[8] || (e[8] = [
1623
+ default: n(() => e[8] || (e[8] = [
1514
1624
  i("By Weapon")
1515
1625
  ])),
1516
1626
  _: 1
@@ -1518,65 +1628,65 @@ function bs(o, e, r, h, c, l) {
1518
1628
  ])
1519
1629
  ])
1520
1630
  ]),
1521
- t("div", $t, [
1522
- t("div", es, [
1523
- t("div", ts, [
1524
- s(n, {
1631
+ t("div", Jt, [
1632
+ t("div", Xt, [
1633
+ t("div", qt, [
1634
+ r(a, {
1525
1635
  color: "secondary",
1526
1636
  size: "md",
1527
1637
  tag: "p",
1528
1638
  weight: "thin",
1529
1639
  class: "pb-4"
1530
1640
  }, {
1531
- default: a(() => e[9] || (e[9] = [
1641
+ default: n(() => e[9] || (e[9] = [
1532
1642
  i("Subscribe")
1533
1643
  ])),
1534
1644
  _: 1
1535
1645
  }),
1536
- s(d, {
1646
+ r(d, {
1537
1647
  placeholder: "Email",
1538
1648
  type: "email",
1539
1649
  class: "w-52"
1540
1650
  })
1541
1651
  ])
1542
1652
  ]),
1543
- t("div", ss, [
1544
- t("div", rs, [
1545
- s(n, {
1653
+ t("div", Pt, [
1654
+ t("div", $t, [
1655
+ r(a, {
1546
1656
  color: "secondary",
1547
1657
  size: "md",
1548
1658
  tag: "p",
1549
1659
  weight: "thin",
1550
1660
  class: "pb-2"
1551
1661
  }, {
1552
- default: a(() => e[10] || (e[10] = [
1662
+ default: n(() => e[10] || (e[10] = [
1553
1663
  i("Follow Us")
1554
1664
  ])),
1555
1665
  _: 1
1556
1666
  }),
1557
1667
  t("div", null, [
1558
- s(g, {
1668
+ r(b, {
1559
1669
  type: "fa-brands",
1560
1670
  icon: "fa-facebook",
1561
1671
  color: "secondary",
1562
1672
  size: "lg",
1563
1673
  class: "mr-4"
1564
1674
  }),
1565
- s(g, {
1675
+ r(b, {
1566
1676
  type: "fa-brands",
1567
1677
  icon: "fa-discord",
1568
1678
  color: "secondary",
1569
1679
  size: "lg",
1570
1680
  class: "mr-4"
1571
1681
  }),
1572
- s(g, {
1682
+ r(b, {
1573
1683
  type: "fa-brands",
1574
1684
  icon: "fa-instagram",
1575
1685
  color: "secondary",
1576
1686
  size: "lg",
1577
1687
  class: "mr-4"
1578
1688
  }),
1579
- s(g, {
1689
+ r(b, {
1580
1690
  type: "fa-brands",
1581
1691
  icon: "fa-youtube",
1582
1692
  color: "secondary",
@@ -1588,65 +1698,65 @@ function bs(o, e, r, h, c, l) {
1588
1698
  ])
1589
1699
  ])
1590
1700
  ]),
1591
- t("div", os, [
1592
- s(n, {
1701
+ t("div", er, [
1702
+ r(a, {
1593
1703
  color: "secondary",
1594
1704
  size: "sm",
1595
1705
  tag: "p",
1596
1706
  weight: "normal",
1597
1707
  class: "text-center pt-4"
1598
1708
  }, {
1599
- default: a(() => e[11] || (e[11] = [
1709
+ default: n(() => e[11] || (e[11] = [
1600
1710
  i("© Copyright Meyer Squared 2024. All rights reserved.")
1601
1711
  ])),
1602
1712
  _: 1
1603
1713
  })
1604
1714
  ])
1605
1715
  ]),
1606
- t("section", ls, [
1716
+ t("section", tr, [
1607
1717
  e[18] || (e[18] = t("div", { class: "h-8" }, null, -1)),
1608
- t("div", ns, [
1609
- t("div", as, [
1610
- t("div", is, [
1718
+ t("div", rr, [
1719
+ t("div", sr, [
1720
+ t("div", lr, [
1611
1721
  t("img", {
1612
1722
  src: c.logo,
1613
1723
  alt: "Logo",
1614
1724
  class: "w-[94px] h-[74px]"
1615
- }, null, 8, ds)
1725
+ }, null, 8, or)
1616
1726
  ]),
1617
- t("div", cs, [
1618
- s(n, {
1727
+ t("div", ar, [
1728
+ r(a, {
1619
1729
  color: "secondary",
1620
1730
  size: "md",
1621
1731
  tag: "p",
1622
1732
  weight: "normal",
1623
1733
  class: "mb-2"
1624
1734
  }, {
1625
- default: a(() => e[13] || (e[13] = [
1735
+ default: n(() => e[13] || (e[13] = [
1626
1736
  i("Tournaments")
1627
1737
  ])),
1628
1738
  _: 1
1629
1739
  }),
1630
- s(n, {
1740
+ r(a, {
1631
1741
  color: "secondary",
1632
1742
  size: "sm",
1633
1743
  tag: "p",
1634
1744
  weight: "normal",
1635
1745
  class: "mb-2"
1636
1746
  }, {
1637
- default: a(() => e[14] || (e[14] = [
1747
+ default: n(() => e[14] || (e[14] = [
1638
1748
  i("Upcoming")
1639
1749
  ])),
1640
1750
  _: 1
1641
1751
  }),
1642
- s(n, {
1752
+ r(a, {
1643
1753
  color: "secondary",
1644
1754
  size: "sm",
1645
1755
  tag: "p",
1646
1756
  weight: "normal",
1647
1757
  class: "mb-2"
1648
1758
  }, {
1649
- default: a(() => e[15] || (e[15] = [
1759
+ default: n(() => e[15] || (e[15] = [
1650
1760
  i("Past")
1651
1761
  ])),
1652
1762
  _: 1
@@ -1654,62 +1764,62 @@ function bs(o, e, r, h, c, l) {
1654
1764
  ])
1655
1765
  ])
1656
1766
  ]),
1657
- t("div", us, [
1658
- t("div", ms, [
1659
- s(n, {
1767
+ t("div", nr, [
1768
+ t("div", ir, [
1769
+ r(a, {
1660
1770
  color: "secondary",
1661
1771
  size: "md",
1662
1772
  tag: "p",
1663
1773
  weight: "thin",
1664
1774
  class: "pb-4 w-full"
1665
1775
  }, {
1666
- default: a(() => e[16] || (e[16] = [
1776
+ default: n(() => e[16] || (e[16] = [
1667
1777
  i("Subscribe for Updates")
1668
1778
  ])),
1669
1779
  _: 1
1670
1780
  }),
1671
- s(d, {
1781
+ r(d, {
1672
1782
  placeholder: "Email",
1673
1783
  type: "email",
1674
1784
  class: "w-full"
1675
1785
  })
1676
1786
  ]),
1677
- t("div", gs, [
1678
- s(n, {
1787
+ t("div", dr, [
1788
+ r(a, {
1679
1789
  color: "secondary",
1680
1790
  size: "md",
1681
1791
  tag: "p",
1682
1792
  weight: "thin",
1683
1793
  class: "pb-2"
1684
1794
  }, {
1685
- default: a(() => e[17] || (e[17] = [
1795
+ default: n(() => e[17] || (e[17] = [
1686
1796
  i("Follow Us")
1687
1797
  ])),
1688
1798
  _: 1
1689
1799
  }),
1690
- t("div", fs, [
1691
- s(g, {
1800
+ t("div", cr, [
1801
+ r(b, {
1692
1802
  type: "fa-brands",
1693
1803
  icon: "fa-facebook",
1694
1804
  color: "secondary",
1695
1805
  size: "lg",
1696
1806
  class: "mr-4"
1697
1807
  }),
1698
- s(g, {
1808
+ r(b, {
1699
1809
  type: "fa-brands",
1700
1810
  icon: "fa-discord",
1701
1811
  color: "secondary",
1702
1812
  size: "lg",
1703
1813
  class: "mr-4"
1704
1814
  }),
1705
- s(g, {
1815
+ r(b, {
1706
1816
  type: "fa-brands",
1707
1817
  icon: "fa-instagram",
1708
1818
  color: "secondary",
1709
1819
  size: "lg",
1710
1820
  class: "mr-4"
1711
1821
  }),
1712
- s(g, {
1822
+ r(b, {
1713
1823
  type: "fa-brands",
1714
1824
  icon: "fa-youtube",
1715
1825
  color: "secondary",
@@ -1722,18 +1832,17 @@ function bs(o, e, r, h, c, l) {
1722
1832
  ])
1723
1833
  ], 64);
1724
1834
  }
1725
- const hs = /* @__PURE__ */ p(Kt, [["render", bs]]), ps = {
1835
+ const mr = /* @__PURE__ */ y(Lt, [["render", ur]]), gr = {
1726
1836
  name: "HomePage",
1727
1837
  components: {
1728
- Footer: hs,
1729
- DoubleButtonBanner: Ft,
1730
- SingleButtonBanner: vt,
1731
- GridLayout: yt,
1732
- TournamentCard: z,
1838
+ Footer: mr,
1839
+ DoubleButtonBanner: It,
1840
+ SingleButtonBanner: pt,
1841
+ GridLayout: bt,
1733
1842
  ArticleCard: Q,
1734
- FencerCard: k,
1735
- Header: fe,
1736
- HeroBanner: Ce
1843
+ FencerCard: L,
1844
+ PageHeader: be,
1845
+ HeroBanner: Ae
1737
1846
  },
1738
1847
  props: {
1739
1848
  title: {
@@ -1782,7 +1891,7 @@ const hs = /* @__PURE__ */ p(Kt, [["render", bs]]), ps = {
1782
1891
  return Q;
1783
1892
  },
1784
1893
  FencerCard() {
1785
- return k;
1894
+ return L;
1786
1895
  },
1787
1896
  limitedTournaments() {
1788
1897
  return this.tournaments.slice(0, 6);
@@ -1790,75 +1899,85 @@ const hs = /* @__PURE__ */ p(Kt, [["render", bs]]), ps = {
1790
1899
  },
1791
1900
  data() {
1792
1901
  return {
1793
- TournamentCard: z
1902
+ TournamentCard: j(We)
1903
+ // Make TournamentCard raw to avoid reactivity
1794
1904
  };
1905
+ },
1906
+ methods: {
1907
+ handleGridCardClick() {
1908
+ console.log("Grid Card Clicked");
1909
+ },
1910
+ changePage(s) {
1911
+ console.log("Change Page", s);
1912
+ }
1795
1913
  }
1796
- }, ys = { class: "m-0 w-full bg-secondary" };
1797
- function xs(o, e, r, h, c, l) {
1798
- const n = u("Header"), d = u("HeroBanner"), g = u("GridLayout"), y = u("SingleButtonBanner"), j = u("DoubleButtonBanner"), G = u("Footer");
1799
- return m(), f("div", ys, [
1800
- s(n),
1801
- s(d, {
1802
- title: r.title,
1803
- buttonLabel: r.buttonLabel,
1804
- description: r.description,
1805
- imageSrc: r.imageSrc
1914
+ }, br = { class: "m-0 w-full bg-secondary" };
1915
+ function fr(s, e, o, h, c, l) {
1916
+ const a = u("PageHeader"), d = u("HeroBanner"), b = u("GridLayout"), p = u("SingleButtonBanner"), C = u("DoubleButtonBanner"), z = u("Footer");
1917
+ return m(), g("div", br, [
1918
+ r(a, { onChangePage: l.changePage }, null, 8, ["onChangePage"]),
1919
+ r(d, {
1920
+ title: o.title,
1921
+ buttonLabel: o.buttonLabel,
1922
+ description: o.description,
1923
+ imageSrc: o.imageSrc
1806
1924
  }, null, 8, ["title", "buttonLabel", "description", "imageSrc"]),
1807
- s(g, {
1925
+ r(b, {
1808
1926
  cardComponent: c.TournamentCard,
1809
1927
  items: l.limitedTournaments,
1810
1928
  maxColumns: 3,
1811
- isLoading: r.articlesIsLoading,
1929
+ isLoading: o.articlesIsLoading,
1812
1930
  moreButtonLabel: "See All Tournaments",
1813
1931
  title: "Upcoming"
1814
1932
  }, null, 8, ["cardComponent", "items", "isLoading"]),
1815
- s(y, {
1933
+ r(p, {
1816
1934
  buttonLabel: "Learn More",
1817
1935
  description: "Look for a Club? <br> We can help.",
1818
- imageUrl: "https://via.placeholder.com/1200x400"
1936
+ imageUrl: "https://meyersquared.com/images/banners/largebanner03.jpg"
1819
1937
  }),
1820
- s(g, {
1938
+ r(b, {
1821
1939
  cardComponent: l.FencerCard,
1822
- items: r.topFencers,
1940
+ items: o.topFencers,
1823
1941
  maxColumns: 5,
1824
1942
  mobileHorizontal: !0,
1825
- isLoading: r.topFencersIsLoading,
1943
+ isLoading: o.topFencersIsLoading,
1826
1944
  moreButtonLabel: "Leaderboards",
1827
- title: "Top Fencers"
1828
- }, null, 8, ["cardComponent", "items", "isLoading"]),
1829
- s(j, {
1945
+ title: "Top Fencers",
1946
+ onGridCardClick: l.handleGridCardClick
1947
+ }, null, 8, ["cardComponent", "items", "isLoading", "onGridCardClick"]),
1948
+ r(C, {
1830
1949
  title: "How Does Meyer Squared work?",
1831
1950
  "button-label-two": "Run a tournament",
1832
1951
  "button-label-one": "Submit Results",
1833
1952
  "image-src": ""
1834
1953
  }),
1835
- s(g, {
1954
+ r(b, {
1836
1955
  cardComponent: l.ArticleCard,
1837
- items: r.articles,
1956
+ items: o.articles,
1838
1957
  maxColumns: 3,
1839
1958
  mobileHorizontal: !0,
1840
- isLoading: r.articlesIsLoading,
1959
+ isLoading: o.articlesIsLoading,
1841
1960
  moreButtonLabel: "See More",
1842
1961
  title: "Interesting Articles"
1843
1962
  }, null, 8, ["cardComponent", "items", "isLoading"]),
1844
- s(G)
1963
+ r(z)
1845
1964
  ]);
1846
1965
  }
1847
- const As = /* @__PURE__ */ p(ps, [["render", xs]]);
1966
+ const yr = /* @__PURE__ */ y(gr, [["render", fr]]);
1848
1967
  export {
1849
1968
  Q as ArticleCard,
1850
- v as BaseIcon,
1851
- x as BaseText,
1852
- Ft as DoubleButtonBanner,
1853
- k as FencerCard,
1854
- hs as Footer,
1855
- yt as GridLayout,
1856
- fe as Header,
1857
- Ce as HeroBanner,
1858
- As as HomePage,
1859
- B as Icon,
1860
- F as InputField,
1861
- ee as Searchbox,
1862
- vt as SingleButtonBanner,
1863
- z as TournamentCard
1969
+ B as BaseIcon,
1970
+ w as BaseText,
1971
+ It as DoubleButtonBanner,
1972
+ L as FencerCard,
1973
+ mr as Footer,
1974
+ bt as GridLayout,
1975
+ be as Header,
1976
+ Ae as HeroBanner,
1977
+ yr as HomePage,
1978
+ S as Icon,
1979
+ V as InputField,
1980
+ $ as Searchbox,
1981
+ pt as SingleButtonBanner,
1982
+ We as TournamentCard
1864
1983
  };