68 lines
2.6 KiB
HTML
68 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<link rel="stylesheet" href="../../../dist/tailshape.css">
|
||
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
|
||
<script src="https://unpkg.com/swiper/swiper-bundle.min.js" defer></script>
|
||
<title>Testimonial 11</title>
|
||
</head>
|
||
<body>
|
||
|
||
|
||
<button class="dark_mode_button_custom_style" id="dark_mood_toogler">
|
||
d
|
||
</button>
|
||
|
||
|
||
<!-- testimonial 13 start -->
|
||
|
||
<section class="section_divider">
|
||
<div>Testimonial 13</div>
|
||
</section>
|
||
<section class="bg-gray-900">
|
||
<div class="w-full px-4 py-20 mx-auto text-center max-w-7xl md:w-4/5 lg:w-4/6">
|
||
<h1 class="mt-3 mb-10 text-xl font-extrabold text-white md:leading-snug md:text-3xl">
|
||
“Implementation is a breeze, particularly because the team at Hellonext is
|
||
<span class="text-white bg-transparent bg-clip-border xl:bg-clip-text xl:text-transparent xl:bg-gradient-to-r from-green-400 to-purple-500"> very fast to respond and help </span>
|
||
where needed, even if it means rolling out new features on their platform. We're super happy and are loving how Hellonext brings us closer to the members of our community“
|
||
</h1>
|
||
<div class="mx-auto mb-3 shadow-lg avatar w-1/5">
|
||
<img src="https://www.hyperui.dev/photos/man-4.jpeg" alt="man standing up a mounten" class=" object-cover rounded-full h-20 w-20 mx-auto " />
|
||
</div>
|
||
<p class="text-base font-medium text-gray-200">example example</p>
|
||
<p class="text-xs font-medium text-gray-400">CEO, example</p>
|
||
</div>
|
||
</section>
|
||
|
||
|
||
|
||
|
||
<!-- testimonial 13 end -->
|
||
|
||
|
||
|
||
<!-- start of script section -->
|
||
<script type="text/javascript">
|
||
let toogler = document.getElementById("dark_mood_toogler");
|
||
let doc_html_el = document.getElementsByTagName('html')[0];
|
||
|
||
doc_html_el.addEventListener('keyup',(e)=>{
|
||
// key 220 is the backward slash , need to press ctrl+ \ to activate or deactivate darkmode
|
||
if(e.ctrlKey && e.keyCode =='220'){
|
||
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
|
||
|
||
}
|
||
})
|
||
toogler.addEventListener('click',()=>{
|
||
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
|
||
console.log(doc_html_el.className);
|
||
})
|
||
</script>
|
||
<!-- end of script section -->
|
||
|
||
|
||
</body>
|
||
</html> |