+
About Us
+
Three builders, one vision: ship reliable, human-centered software and services.
+
+
-
-
+

-
Eric Villnow
-
- {{.EricBio}}
-
-
vill.now
+ alt="Eric Villnow">
+
Eric Villnow
+
{{.EricBio}}
+
vill.now
-
-
-
-
-
What Our Clients Say
-
-
+
+
+
What Our Clients Say
+
+
{{range $index, $testimonial := .Testimonials}}
-
-
"{{$testimonial.Quote}}"
-
— {{$testimonial.Name}}, {{$testimonial.Position}}
+
+
"{{$testimonial.Quote}}"
+
— {{$testimonial.Name}}, {{$testimonial.Position}}
{{end}}
-
-
-
-
-
-
+
+
+
+
-
-
-
-
- Swift, Villnow & Swift Industries
- {{.Occupation}} Division
- (218) 210-5180
- sales@svsindustries.org
+ function show(i) {
+ slides.forEach((s, idx) => {
+ s.classList.toggle('active', idx === i);
+ });
+ }
-
-
© {{.CurrentYear}} Swift, Villnow & Swift Industries. All rights reserved.
-
-
-
+ function go(delta) {
+ index = (index + delta + slides.length) % slides.length;
+ show(index);
+ }
+
+ prev?.addEventListener('click', () => go(-1));
+ next?.addEventListener('click', () => go(1));
+
+ let timer = setInterval(() => go(1), 6500);
+ slider.addEventListener('mouseenter', () => clearInterval(timer));
+ slider.addEventListener('mouseleave', () => {
+ timer = setInterval(() => go(1), 6500);
+ });
+ })();
+