diff --git a/website/public/images/daily/patty-ocallaghan.jpg b/website/public/images/daily/patty-ocallaghan.jpg new file mode 100644 index 00000000..82f9bf12 Binary files /dev/null and b/website/public/images/daily/patty-ocallaghan.jpg differ diff --git a/website/public/images/daily/stephen-mulvihill.jpg b/website/public/images/daily/stephen-mulvihill.jpg new file mode 100644 index 00000000..521dedb0 Binary files /dev/null and b/website/public/images/daily/stephen-mulvihill.jpg differ diff --git a/website/src/pages/daily.mdx b/website/src/pages/daily.mdx index bfffff5f..42559d48 100644 --- a/website/src/pages/daily.mdx +++ b/website/src/pages/daily.mdx @@ -6,32 +6,58 @@ title: Oliver's Daily List import AboutMe from '../components/AboutMe.astro'; import DailyEmailForm from '../components/DailyEmailForm.astro'; import Markdown from '../components/Markdown.astro'; +import _ from 'lodash' export const testimonials = [ { name: "Patty O'Callaghan", text: "

Just wanted to say that your blog is amazing <3 I absolutely love it and usually share it with colleagues and some of the kids at my Code Club.

Thanks for contributing to the community with your amazing content! :)

", + image: "patty-ocallaghan.jpg" }, + { + name: "Stephen Mulvihill", + text: "I like the \"$ git log -S\" and \"$ git log --grep\" commands, will definitely be using these, thanks!", + image: "stephen-mulvihill.jpg" + } ] +export const sortedTestimonials = _.reverse(testimonials) + A daily newsletter on software development, DevOps, community, and open-source. - +
+
+ -{false && testimonials && ( -
-

Testimonials

+ {sortedTestimonials && ( +
+

Testimonials

-
- {testimonials.map(testimonial => ( -
- {testimonial.name} +
+ {testimonials.map(testimonial => ( +
+
+
+ +
+ +
{testimonial.name}
+
- -
- ))} -
-
-)} + + + ))} +
+ + )} +
- + +