diff --git a/src/assets/gsfcircle.png b/src/assets/gsfcircle.png new file mode 100644 index 0000000..f93eaf9 Binary files /dev/null and b/src/assets/gsfcircle.png differ diff --git a/src/assets/properity.png b/src/assets/properity.png new file mode 100644 index 0000000..e2c1b3a Binary files /dev/null and b/src/assets/properity.png differ diff --git a/src/assets/regccircle.png b/src/assets/regccircle.png new file mode 100644 index 0000000..5c3e723 Binary files /dev/null and b/src/assets/regccircle.png differ diff --git a/src/assets/wokacircle.png b/src/assets/wokacircle.png new file mode 100644 index 0000000..4799831 Binary files /dev/null and b/src/assets/wokacircle.png differ diff --git a/src/components/OS/HybridMobile.jsx b/src/components/OS/HybridMobile.jsx index b8d91ed..277c4fb 100644 --- a/src/components/OS/HybridMobile.jsx +++ b/src/components/OS/HybridMobile.jsx @@ -13,7 +13,7 @@ import tsx from "../../assets/typescript.png"; const techStack = [ { name: "HTML", image: htmlpng }, { name: "React", image: reactjs }, - { name: "Code Igniter", image: codeIgniter }, + { name: "CodeIgniter", image: codeIgniter }, { name: "Java", image: java }, { name: "Angular", image: angular }, { name: "Vue", image: vue }, @@ -38,150 +38,133 @@ const Hybrid = () => { bgColor="black" gap={3} px={{ base: "1rem", md: "2rem" }} - > + > Front-End - + - {techStack.slice(0, 3).map((tech) => ( + {techStack.slice(0, 2).map((tech) => ( - - + + {tech.name} ))} - - {techStack.slice(3).map((tech) => ( + {techStack.slice(2).map((tech) => ( - - - {tech.name} - - + key={tech.name} + w={{ base: "110px", sm: "288px" }} + h="99px" + p="10px" + display="flex" + bgColor="#0F0F0F" + flexDirection="row" + justifyContent="space-between" + alignItems="center" + filter="grayscale(100%)" + _hover={{ filter: "grayscale(0%)", bgColor: "#1F1F1F" }} + > + + + {tech.name} + + ))} - {/* Back-End Section */} Back-End - + - {backEnd.slice(0, 3).map((tech) => ( - - - - {tech.name} - - + {backEnd.slice(0, 2).map((tech) => ( + + + + {tech.name} + + ))} - - {backEnd.slice(3).map((tech) => ( + {backEnd.slice(2).map((tech) => ( - - - {tech.name} - - + key={tech.name} + w={{ base: "110px", sm: "288px" }} + h="99px" + p="1rem" + display="flex" + bgColor="#0F0F0F" + flexDirection="row" + justifyContent="space-between" + alignItems="center" + filter="grayscale(100%)" + _hover={{ filter: "grayscale(0%)", bgColor: "#1F1F1F" }} + > + + + {tech.name} + + ))} diff --git a/src/components/Testinomals.jsx b/src/components/Testinomals.jsx index fa23d5b..1942f3e 100644 --- a/src/components/Testinomals.jsx +++ b/src/components/Testinomals.jsx @@ -1,28 +1,58 @@ import React, { useEffect, useState } from "react"; -import { Box, Flex, Text, Image, Heading, HStack, Container } from "@chakra-ui/react"; +import { + Box, + Flex, + Text, + Image, + Heading, + HStack, + Container, +} from "@chakra-ui/react"; import simpletend from "../assets/simpletend.png"; import { FaChevronLeft, FaChevronRight } from "react-icons/fa"; import upperQuotes from "../assets/upperquotes.png"; import lowerQuotes from "../assets/lowerqoutes.png"; +import regc from "../assets/regccircle.png" +import wokacircle from "../assets/wokacircle.png" +import gsfcircle from "../assets/gsfcircle.png" +import prosperity from "../assets/properity.png" + const testimonials = [ { quote: - "The team is professional and dedicated to the project; we feel they’re part of our own team.", + "The team is professional and dedicated to the project; we feel they’re part of our own team. Although the app is still in development, we are impressed with WDI’s ability to solve problems quickly. The team is knowledgeable and professional; they’ve delivered everything they promised and communicated effectively through emails and Zoom calls. Customers can expect a great experience.", author: "Saeed Saatchi", role: "CEO & Founder, SimpliFiend", + img :simpletend }, { quote: - "We had an excellent experience working with the team; they were highly skilled and collaborative.", - author: "John Doe", - role: "Product Manager, Example Corp", + "Indeed, I am very happy with the quality of work carried out by Website Developers India Pvt. Ltd. They are prompt at work, and their team delivers on time with high-value solutions at affordable costs. Everything from them was outstanding in their delivery.", + author: "Manvendra Kishor", + role: "Director, WOKA", + img :wokacircle }, { quote: - "Their commitment to the project was evident from the start, and they delivered exceptional results.", - author: "Jane Smith", - role: "CTO, Tech Innovations", + "I'm so excited about the services offered by Website Developers India Pvt. Ltd. Their team did a great job and at cheaper rates. The supportive team at WDI helped in make my project more than I had expected. I would recommend them for web or app development services.", + author: "Samantha Johnson", + role: "Founder, prosperity.", + img:prosperity + }, + { + quote: + "I am very pleased with the services of WDI Their knowledgeable developers created a high-quality website for me at an affordable cost. The supportive team quickly solved any bugs arising in the project.", + author: "Sophia Garcia,", + role: "Founder, Regroup.", + img :regc + }, + { + quote: + "Indeed, I am very happy with the quality of work carried out by Website Developers India Pvt. Ltd. They are prompt at work, and their team delivers on time with high-value solutions at affordable costs. Everything from them was outstanding in their delivery.", + author: "Shramesh Sharma", + role: "Founder, GetSetFit.", + img :gsfcircle }, ]; @@ -71,115 +101,124 @@ const Carousel = () => { }, []); // Empty dependency array ensures effect runs once on mount return ( - - Testimonial - - - - {testimonials.map((testimonial, index) => ( + + + + Testimonial + + + + + {testimonials.map((testimonial, index) => ( + - - - “{testimonial.quote}” - - - {testimonial.role} - - - {testimonial.author} - - - + - - - - + {testimonial.role} + + + {testimonial.author} + + + + + + - ))} - - - - - - - - + + ))} + + + + + + - + + ); }; diff --git a/src/components/ui/Mobile/Tabs.jsx b/src/components/ui/Mobile/Tabs.jsx index 585d965..3e80042 100644 --- a/src/components/ui/Mobile/Tabs.jsx +++ b/src/components/ui/Mobile/Tabs.jsx @@ -1,6 +1,6 @@ import { Container, Flex, Box, Text } from "@chakra-ui/react"; import { useState } from "react"; -import Hybrid from "../../OS/Hybrid"; +import Hybrid from "../../OS/HybridMobile"; const HybridComponent = () => ; const IOSComponent = () =>
IOS Content
;