diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 2e8fa6d..d054110 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -1,6 +1,6 @@ import React from "react"; import { Box, Container, Grid, Typography, Link, IconButton, Divider } from "@mui/material"; -import { LocationOn, Email, Phone } from "@mui/icons-material"; +import { LocationOn, Email } from "@mui/icons-material"; import InstagramIcon from "@mui/icons-material/Instagram"; import TwitterIcon from "@mui/icons-material/Twitter"; import FacebookIcon from "@mui/icons-material/Facebook"; @@ -17,7 +17,7 @@ const Footer: React.FC = () => { Loop Sustainability - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris. + Loop Sustainability helps businesses responsibly recycle used electronic items through advanced refining and disintegration processes. We ensure compliance, sustainability, and a circular economy approach to e-waste management. @@ -26,22 +26,26 @@ const Footer: React.FC = () => { Get in Touch - - - 8819 Ohio St. South Gate, CA 90280 + + + + Hyderabad Office: 3rd Floor, Plot No: 1303 and 1304, Ayyappa Society, Khanamet, Madhapur, Hyderabad 500081, Telangana, India. + + + + + + Chennai Office: Plot No 1, Kundrathur Main Road, Sri Guruvayurappan Nagar, Manancherry, Chengalpattu, Chennai 600069, Tamil Nadu, India. + - Ourstudio@hello.com - - - - +1 386-688-3295 + reach@letsloop.in {/* Company Links */} - + Company @@ -52,25 +56,25 @@ const Footer: React.FC = () => { ))} + + {/* Social Media Icons */} + + + + + + + + + + + + + + - {/* Social Media Icons */} - - - - - - - - - - - - - - - {/* Footer Links */} diff --git a/src/components/imageandgif/KartikReddy.png b/src/components/imageandgif/KartikReddy.png new file mode 100644 index 0000000..eb73a9c Binary files /dev/null and b/src/components/imageandgif/KartikReddy.png differ diff --git a/src/components/imageandgif/MukeshLamba.png b/src/components/imageandgif/MukeshLamba.png new file mode 100644 index 0000000..d4e59e3 Binary files /dev/null and b/src/components/imageandgif/MukeshLamba.png differ diff --git a/src/components/imageandgif/Palani.png b/src/components/imageandgif/Palani.png new file mode 100644 index 0000000..e5f1587 Binary files /dev/null and b/src/components/imageandgif/Palani.png differ diff --git a/src/components/imageandgif/RamaKrishnan.png b/src/components/imageandgif/RamaKrishnan.png new file mode 100644 index 0000000..780a85f Binary files /dev/null and b/src/components/imageandgif/RamaKrishnan.png differ diff --git a/src/components/imageandgif/RamanaReddy.png b/src/components/imageandgif/RamanaReddy.png new file mode 100644 index 0000000..752cdb5 Binary files /dev/null and b/src/components/imageandgif/RamanaReddy.png differ diff --git a/src/components/imageandgif/Suresh.png b/src/components/imageandgif/Suresh.png new file mode 100644 index 0000000..7143adb Binary files /dev/null and b/src/components/imageandgif/Suresh.png differ diff --git a/src/components/ourteam.tsx b/src/components/ourteam.tsx index 6cc9a9c..5789daf 100644 --- a/src/components/ourteam.tsx +++ b/src/components/ourteam.tsx @@ -14,7 +14,12 @@ import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; import ExpandLessIcon from "@mui/icons-material/ExpandLess"; import robert from "../components/imageandgif/robert.png"; - +import RamanaReddy from "../components/imageandgif/RamanaReddy.png"; +import MukeshLamba from "../components/imageandgif/MukeshLamba.png"; +import RamaKrishnan from "../components/imageandgif/RamaKrishnan.png"; +import KartikReddy from "../components/imageandgif/KartikReddy.png"; +import Suresh from "../components/imageandgif/Suresh.png"; +import Palani from "../components/imageandgif/Palani.png"; interface TeamMember { name: string; role: string; @@ -22,12 +27,12 @@ interface TeamMember { } const teamMembers: TeamMember[] = [ - { name: "John Doe", role: "Software Engineer", image: robert }, - { name: "Jane Smith", role: "UI/UX Designer", image: robert }, - { name: "Alice Johnson", role: "Project Manager", image: robert }, - { name: "Robert Brown", role: "Marketing Lead", image: robert }, - { name: "Emma Wilson", role: "Backend Developer", image: robert }, - { name: "Michael Davis", role: "Data Analyst", image: robert }, + { name: "Ramana Reddy", role: "Software Engineer", image: RamanaReddy }, + { name: "Mukesh Lamba", role: "UI/UX Designer", image: MukeshLamba }, + { name: "Rama Krishnan", role: "Project Manager", image: RamaKrishnan }, + { name: "Kartik Reddy", role: "Marketing Lead", image: KartikReddy }, + { name: "Suresh", role: "Backend Developer", image: Suresh }, + { name: "Palani", role: "Data Analyst", image: Palani }, ]; const OurTeam: React.FC = () => { @@ -51,17 +56,18 @@ const OurTeam: React.FC = () => { display="flex" alignItems="center" gap={1} - sx={{ cursor: "pointer" }} + sx={{ cursor: "pointer", marginBottom: 10 }} onClick={() => setShowTeam(!showTeam)} > - + Our Team + {showTeam ? : } - + For over a decade, our team members have been actively involved in institutional reuse and recycling across various organizations and projects in India. We take pride in our leadership, strong industry relationships, regulatory expertise, process efficiency, and technical proficiency. {/* Expanding Team Section */} { transition={{ duration: 0.5, ease: "easeInOut" }} style={{ overflow: "hidden", width: "100%" }} > - + {teamMembers.map((member, index) => ( + + {member.name} @@ -92,10 +148,6 @@ const OurTeam: React.FC = () => { {member.role} - - {/* Divider */} - - { }} /> + ))}