diff --git a/src/app/config/Testimonials.ts b/src/app/config/Testimonials.ts
new file mode 100644
index 0000000..37a8d01
--- /dev/null
+++ b/src/app/config/Testimonials.ts
@@ -0,0 +1,43 @@
+import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
+import { faLinkedin } from "@fortawesome/free-brands-svg-icons";
+
+export const Testimonials: {
+ name: string;
+ date: Date;
+ content: string;
+ sourceIcon: IconDefinition;
+ sourceUrl: string;
+}[] = [
+ {
+ name: "Eddie Jaoude",
+ date: new Date("June 30, 2023"),
+ content:
+ "Naomi has done a fantastic job in creating Becca Bot, which is an integral part in managing the EddieHub Discord Community. As founder of EddieHub, Naomi is super helpful to all Community members and an excellent moderator, from our text channels to audio calls and live streams. Naomi demonstrates an excellent technical knowledge and is always keen to share this with the community.",
+ sourceIcon: faLinkedin,
+ sourceUrl: "https://www.linkedin.com/in/naomi-lgbt/details/recommendations/"
+ },
+ {
+ name: "Danny Thompson",
+ date: new Date("July 6 2023"),
+ content:
+ "If you need a problem solver, look at Naomi. Naomi is a fantastic part of the online tech community by teaching and offering help to beginners on their journeys into tech. She has created some great solutions and is a consistent learner. Naomi has led initiatives using Javascript and front-end technologies to produce finished products within a volunteer position. Highly recommend Naomi to any team.",
+ sourceIcon: faLinkedin,
+ sourceUrl: "https://www.linkedin.com/in/naomi-lgbt/details/recommendations/"
+ },
+ {
+ name: "Francez Urmatan",
+ date: new Date("May 2 2024"),
+ content:
+ "Naomi is an absolute trailblazer, and is an amazing person to work with! Naomi is humorous and also has an amazing attitude to work with. Her ability to solve complex problems efficiently astounds me. Not only does she demonstrate outstanding technical knowledge, but also does an amazing job at elucidating her needs as an engineer. She is a very warm person and quite easy to work with. Naomi is immensely perceptive and very calculated with what she does. Naomi would make an excellent addition to any company that is lucky enough to hire her!",
+ sourceIcon: faLinkedin,
+ sourceUrl: "https://www.linkedin.com/in/naomi-lgbt/details/recommendations/"
+ },
+ {
+ name: "Katey Berry",
+ date: new Date("May 14 2024"),
+ content:
+ "I've worked alongside Naomi on a number of projects, and it is always a blessing to have her on the team. She is knowledgable, reliable, and always willing to jump in with creative and efficient engineering solutions to complex workflow problems. Naomi is also such a patient teacher, effectively explaining how things work and enabling others to become more independent. I always look forward to working with Naomi, and recommend you work with her if you have the opportunity!",
+ sourceIcon: faLinkedin,
+ sourceUrl: "https://www.linkedin.com/in/naomi-lgbt/details/recommendations/"
+ }
+];
diff --git a/src/app/home/home.component.css b/src/app/home/home.component.css
index 13592ca..28bfce4 100644
--- a/src/app/home/home.component.css
+++ b/src/app/home/home.component.css
@@ -12,6 +12,28 @@ section {
margin-bottom: 1rem;
}
+button {
+ border: 2px solid var(--text);
+ background-color: var(--bg);
+ color: var(--text);
+ font-size: 1.5rem;
+ cursor: pointer;
+}
+
+button:disabled {
+ background-color: var(--text);
+ color: var(--bg);
+ cursor: not-allowed;
+}
+
+.buttons {
+ width: 100%;
+ max-width: 1200px;
+ display: flex;
+ justify-content: space-evenly;
+ margin: auto;
+}
+
.smaller {
font-size: 1rem;
max-width: 1125px;
diff --git a/src/app/home/home.component.html b/src/app/home/home.component.html
index f40f3fb..75d8d0e 100644
--- a/src/app/home/home.component.html
+++ b/src/app/home/home.component.html
@@ -20,6 +20,27 @@
+ Here's what people have to say about our work! If you want to leave your own,
+ you can do so through LinkedIn, TopMate, or even an issue on this repository!
+