@rileybathurst/paddle 0.0.19 → 0.0.21

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": "@rileybathurst/paddle",
3
3
  "private": false,
4
- "version": "0.0.19",
4
+ "version": "0.0.21",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,20 +1,18 @@
1
1
  import * as React from "react"
2
2
 
3
3
  interface TestimonialsTypes {
4
- testimonials: TestimonialTypes[];
4
+ nodes: {
5
+ id: string;
6
+ testimonial: string;
7
+ sign: string;
8
+ customer: string;
9
+ location: string;
10
+ }[];
5
11
  }
6
12
 
7
- interface TestimonialTypes {
8
- id: React.Key;
9
- testimonial: string;
10
- sign: string;
11
- customer: string;
12
- location: string;
13
- }
14
-
15
- export const PaddleTestimonials = ({ testimonials }: TestimonialsTypes) =>
16
- <ul className='testimonials vulture'>
17
- {testimonials.map((testimonial: TestimonialTypes) => (
13
+ export const PaddleTestimonials = ({ nodes }: TestimonialsTypes) =>
14
+ <ul className='testimonials condor'>
15
+ {nodes.map((testimonial) => (
18
16
  <li key={testimonial.id}>
19
17
  <p className='elbrus'><span className='denali font-serif'>&ldquo;</span>{testimonial.testimonial}<span className='denali font-serif'>&rdquo;</span></p>
20
18
  <p>{testimonial.sign} {testimonial.customer}</p>
@@ -35,7 +35,7 @@ export const Testimonials = ({
35
35
  }: TestimonialsProps) => {
36
36
 
37
37
  return (
38
- <ul className='testimonials vulture'>
38
+ <ul className='testimonials condor'>
39
39
  <Deal />
40
40
  </ul>
41
41
  );
@@ -115,12 +115,11 @@
115
115
  /* #WIDTHS */
116
116
  /* https://en.wikipedia.org/wiki/Largest_living_flying_birds_by_wingspan */
117
117
  /*------------------*/
118
- --swan: 20rem;
119
- --vulture: 30rem;
120
- --stork: 40rem;
121
- --condor: 50rem;
122
- --pelican: 60rem;
123
- --albatross: 80rem;
118
+ --vulture: 10rem;
119
+ --stork: 18rem;
120
+ --condor: 30rem;
121
+ --pelican: 49rem;
122
+ --albatross: 79rem;
124
123
 
125
124
  /*------------------*/
126
125
  /* #Z INDEX */