Swadesh Housing Projects LLP - Corporate Profile Website
A single-page static website showcasing the corporate profile of Swadesh Housing Projects LLP, built from the company’s PDF profile document.
Features
- Responsive Design: Fully responsive layout that works on desktop, tablet, and mobile devices
- Modern UI: Clean, professional design with a real estate-focused color palette
- Tailwind CSS: Styled using Tailwind CSS via CDN for easy maintenance
- Single Page: All content on one page for easy navigation
- GitHub Pages Ready: Uses relative paths and can be easily deployed to GitHub Pages
Color Palette
- Primary Blue: #1e3a5f
- Secondary Blue: #2c5282
- Accent Gold: #d4af37
- Accent Teal: #2d7d7d
- Light Background: #f8f9fa
Typography
- Headings: Playfair Display (serif) - for elegant, professional headings
- Body: Inter (sans-serif) - for clean, readable body text
Sections
- Header: Company name and branding
- Hero Section: Main introduction
- About Us: Company overview, vision, and approach
- Core Values: Quality, Customer Centricity, Integrity, Innovation, Sustainability
- Leadership Team: Profiles of key team members
- Ongoing Projects: Current developments
- Completed Projects: Landmark projects delivered
- Expertise: Company capabilities
- Sister Companies: Network of related businesses
- Call to Action: Partnership invitation
- Footer: Contact information
Deployment to GitHub Pages
Method 1: Direct Upload
- Create a new repository on GitHub
- Upload
index.html to the repository
- Go to Settings → Pages
- Select the main branch as the source
- Your site will be available at
https://username.github.io/repository-name/
Method 2: Using Git
# Initialize git repository
git init
# Add files
git add index.html README.md
# Commit
git commit -m "Initial commit: Swadesh Housing corporate profile website"
# Add remote (replace with your repository URL)
git remote add origin https://github.com/username/repository-name.git
# Push to GitHub
git push -u origin main
# Enable GitHub Pages in repository settings
Local Development
Simply open index.html in a web browser. No build process or server required.
Browser Support
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- Mobile browsers (iOS Safari, Chrome Mobile)
Customization
To customize colors, fonts, or content:
- Colors: Modify CSS variables in the
<style> section within <head>
- Fonts: Update Google Fonts links in the
<head> section
- Content: Edit HTML content directly in
index.html
Images
The website includes placeholder images from Unsplash in the following locations:
- Hero Section: Background image of modern architecture
- About Us: Side image of residential building
- Leadership Team: Profile photos for each team member (4 images)
- Ongoing Projects: Project showcase images (6 images - one per project)
- Completed Projects: Gallery of completed buildings (3 showcase images)
- Expertise Section: Images representing Residential, Commercial, and Redevelopment projects (3 images)
- Footer: Office building image
Replacing Images
To replace placeholder images with actual photos:
- Add your images to an
images/ folder in the repository
- Update the
src attributes in index.html to point to your local images
- Example: Change
src="https://images.unsplash.com/..." to src="images/hero-bg.jpg"
Recommended Image Sizes:
- Hero background: 1920x1080px
- Project images: 600x400px
- Profile photos: 400x400px (square)
- Gallery images: 600x600px
Notes
- Images are currently using Unsplash placeholder URLs for demonstration
- The design is optimized for readability and professional presentation
- The layout follows the structure and content from the original PDF document
- All images include proper
alt attributes for accessibility