Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions components/Home/Gallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ const ServiceSlider = () => {
// slideShadows: false
// }}
pagination={{
dynamicBullets: true
clickable: true
}}
autoplay={{
delay: 2000,
disableOnInteraction: true
}}
modules={[Autoplay, Pagination]}
className="overflow-hidden"
className="overflow-hidden pb-12"
>
{serviceData.map((item, index) => (
<SwiperSlide key={index}>
Expand All @@ -110,6 +110,7 @@ const ServiceSlider = () => {
</SwiperSlide>
))}
</Swiper>

</>
// <Swiper
// pagination={{
Expand Down
2 changes: 1 addition & 1 deletion components/Shared/Scroll.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ScrollToTopButton = () => {
}, []);

return (
<div className="fixed bottom-20 right-16 max-md:right-4 max-md:bottom-4">
<div className="fixed bottom-20 right-16 max-md:right-4 max-md:bottom-4 z-50">
{isVisible && (
<button
onClick={scrollToTop}
Expand Down
10 changes: 5 additions & 5 deletions public/sitemap-0.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://githubsrmist.tech</loc><lastmod>2024-11-02T08:40:37.796Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/about</loc><lastmod>2024-11-02T08:40:37.797Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/contact</loc><lastmod>2024-11-02T08:40:37.797Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/events</loc><lastmod>2024-11-02T08:40:37.797Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/team</loc><lastmod>2024-11-02T08:40:37.797Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech</loc><lastmod>2025-03-01T09:32:37.948Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/about</loc><lastmod>2025-03-01T09:32:37.949Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/contact</loc><lastmod>2025-03-01T09:32:37.949Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/events</loc><lastmod>2025-03-01T09:32:37.949Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://githubsrmist.tech/team</loc><lastmod>2025-03-01T09:32:37.949Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
</urlset>
31 changes: 31 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,34 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

.swiper {
position: relative !important;
}


.swiper-pagination {
background-color: rgba(0, 0, 0, 0.5);
padding: 10px 15px;
border-radius: 15px;
display: flex !important;
justify-content: center;
align-items: center;
width: fit-content !important;
margin: auto !important;

position: absolute !important; /* Ensures correct placement */
bottom: 15px !important; /* Moves pagination UP from the bottom */
left: 50% !important;
transform: translateX(-50%) !important; /* Centers it horizontally */
}

.swiper-pagination-bullet {
background: white !important;
opacity: 0.7;
}

.swiper-pagination-bullet-active {
background: rgb(13 255 78) !important;
opacity: 1;
}