From bd9d98db727db8796b2d6443cb16df5fdd8a5906 Mon Sep 17 00:00:00 2001 From: mageexcel <49708265+mageexcel@users.noreply.github.com> Date: Tue, 12 Sep 2023 01:00:38 +0530 Subject: [PATCH] feat(site): introduce book a demo page (#490) close #388 Co-authored-by: brian-mulier-p --- components/demo/Headers.vue | 120 +++++++++++++++++++ components/home/Testimonials.vue | 3 + components/home/TestimonialsItem.vue | 14 ++- components/layout/Header.vue | 9 +- pages/demo.vue | 6 + public/demo/background.svg | 87 ++++++++++++++ public/landing/enterprises/adeo-services.svg | 9 ++ public/landing/enterprises/airpaz.svg | 9 ++ public/landing/enterprises/twosix.svg | 22 ++++ 9 files changed, 275 insertions(+), 4 deletions(-) create mode 100644 components/demo/Headers.vue create mode 100644 pages/demo.vue create mode 100644 public/demo/background.svg create mode 100644 public/landing/enterprises/adeo-services.svg create mode 100644 public/landing/enterprises/airpaz.svg create mode 100644 public/landing/enterprises/twosix.svg diff --git a/components/demo/Headers.vue b/components/demo/Headers.vue new file mode 100644 index 0000000000..c4e1e41418 --- /dev/null +++ b/components/demo/Headers.vue @@ -0,0 +1,120 @@ + + + + + \ No newline at end of file diff --git a/components/home/Testimonials.vue b/components/home/Testimonials.vue index 342520bae3..4751159508 100644 --- a/components/home/Testimonials.vue +++ b/components/home/Testimonials.vue @@ -65,6 +65,7 @@ name: "Daniel Theodorus", link: "https://www.linkedin.com/in/hamrio/", designation: "IT Project Manager @ Airpaz", + enterpriseLogo: "/landing/enterprises/airpaz.svg", alt: "Picture of Daniel testimony", }, { @@ -73,6 +74,7 @@ name: "Michael Reynolds", link: "https://www.linkedin.com/in/michael-reynolds-a0a32a28/", designation: "Lead Research Engineer @ Two Six Labs", + enterpriseLogo: "/landing/enterprises/twosix.svg", alt: "Picture of Michael testimony", }, { @@ -97,6 +99,7 @@ name: "Oussama Bakkali", link: "https://www.linkedin.com/in/oussama-bakkali-949708b6/", designation: "Data Engineer DevOps @ ADEO Services", + enterpriseLogo: "/landing/enterprises/adeo-services.svg", alt: "Picture of Ousama testimony", }, { diff --git a/components/home/TestimonialsItem.vue b/components/home/TestimonialsItem.vue index 252671b018..909109ac5c 100644 --- a/components/home/TestimonialsItem.vue +++ b/components/home/TestimonialsItem.vue @@ -1,11 +1,14 @@