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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
🏗️ Construction & House Painting Services – Landing Page - Live Link : https://constructionhomepag.netlify.app/
🏗️ Construction & House Painting Services – Landing Page - Live Link : https://painting-construction-vww4.vercel.app/

A modern, fully responsive single-page website designed for Construction & House Painting businesses.
Built with Vite + React + Bootstrap 5 for high performance, fast development, and seamless deployment on platforms like Netlify, Vercel, or GitHub Pages.
Expand Down
Binary file added public/images/colour_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/home_renovation_work.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/modern_house_cleaned.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/modern_house_img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/modern_house_one.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/nadumuttam_veedu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/new_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/traditional_house.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/wall_painting.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/waterprofing_painting.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/web_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 9 additions & 7 deletions src/components/Gallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,33 @@ import { useEffect, useRef, useState } from 'react';

const images = [
{
src: '/images/contemporary_modern_house.jpg',
src: '/images/modern_house_one.png',
title: 'Modern Villa in Thrissur',
description: 'A complete residential painting project in Thrissur using premium-quality materials and modern design techniques for a durable, stunning finish.',
caption: 'Project: Exterior Painting · High-quality weather protection',
},
{
src: 'images/nalukettu_veedu.jpg',
src: 'images/nadumuttam_veedu.png',
title: 'Traditional House Renovation',
description: 'Expert home renovation in Kerala, preserving traditional charm with high-quality interior painting and advanced finishing works.',
caption: 'Project: Heritage Restoration · Eco-friendly coatings',
},
{
src: '/images/modern_home_three.jpg',
src: '/images/modern_house_cleaned.png',
title: 'Luxury Flat Finishing',
description: 'Interior painting and wall putty works for a luxury apartment in Thrissur, delivering a flawless modern look with skilled painters.',
caption: 'Project: Interior Finishing · Seamless wall putty + texture',
},
{
src: 'images/traditional_home_one.jpg',
title: 'Commercial Office Painting',
src: 'images/traditional_house.png',
title: 'Commercial Home Painting',
description: 'Professional painting and maintenance for a commercial building in Thrissur, ensuring a professional and durable environment.',
caption: 'Project: Office Workspace Refresh · Premium commercial grade paint',
},
];

/////////////////////////////////

const sliderStyles = `
.gallery-section {
padding: 0;
Expand Down Expand Up @@ -75,8 +77,8 @@ const sliderStyles = `
}

.gallery-item img.carousel-image {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
background: transparent;
Expand Down
8 changes: 4 additions & 4 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ const Navbar = () => {
}}
>
<img
src="/images/colors_logo.jpeg"
src="/images/colour_logo.png"
alt="Colour Finishers Thrissur Logo"
height="40"
className={`shadow-sm border ${theme === "dark" ? "border-transparent-logo" : "border-light"}`}
style={{ borderRadius: "50%" }}
height="30"
// className={`shadow-sm border ${theme === "dark" ? "border-transparent-logo" : "border-light"}`}

/>

</a>
Expand Down
7 changes: 4 additions & 3 deletions src/components/Services.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,22 @@ const services = [
{
title: 'Professional Painting',
description: 'Specializing in interior and exterior painting, texture painting, and wall putty for a spotless, premium finish.',
image: '/images/service-house-painting.jpeg',
image: '/images/wall_painting.webp',
},
{
title: 'Construction & Renovation',
description: 'Expert residential and commercial construction, new house builds, villa renovations, and modern office designs.',
image: '/images/service-interior-exterior.jpeg',
image: '/images/home_renovation_work.jpg',
},
{
title: 'Waterproofing & Finishing',
description: 'Durable waterproofing solutions and complete build finishing works to protect and enhance your property.',
image: '/images/service-waterproofing-renovation (1).jpg',
image: '/images/waterprofing_painting.jpg',
},
];

const Services = () => {

return (
<section id="services" className="py-5 themed-section">
<div className="container">
Expand Down