mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
* feat: Update Signup page designs * feat: Update the signup page with dynamic testimonials * Remove the images * chore: Minor UI fixes * chore: Form aligned to centre * Update app/javascript/dashboard/routes/auth/components/Signup/Form.vue * Design improvements * Update company name key * Revert "chore: Minor UI fixes" This reverts commit1556f4ca83. * Revert "Design improvements This reverts commitdfb2364cf2. * Remove footer * Fix spacing * Update app/views/installation/onboarding/index.html.erb Co-authored-by: iamsivin <[email protected]> Co-authored-by: Sivin Varghese <[email protected]> Co-authored-by: Nithin David Thomas <[email protected]>
7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
/* global axios */
|
|
import wootConstants from 'dashboard/constants';
|
|
|
|
export const getTestimonialContent = () => {
|
|
return axios.get(wootConstants.TESTIMONIAL_URL);
|
|
};
|