Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-03-08 10:47:27 +00:00
4 changed files with 71 additions and 275 deletions

View File

@@ -17,8 +17,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Our Services", href: "services" },
{ label: "Portfolio", href: "projects" },
@@ -26,8 +25,7 @@ export default function ContactPage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Architecture Design", href: "services" },
{ label: "Interior Design", href: "services" },
{ label: "3D Elevation Design", href: "services" },
@@ -35,8 +33,7 @@ export default function ContactPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: +91 72753 18871", href: "tel:+917275318871" },
{ label: "Email: info@bhawanshilp.com", href: "mailto:info@bhawanshilp.com" },
{ label: "Kanpur, Uttar Pradesh", href: "#" },
@@ -52,7 +49,7 @@ export default function ContactPage() {
borderRadius="rounded"
contentWidth="compact"
sizing="mediumLarge"
background="blurBottom"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
@@ -63,9 +60,7 @@ export default function ContactPage() {
brandName="Bhawanshilp Architects"
navItems={navItems}
button={{
text: "Get Free Consultation",
href: "contact",
}}
text: "Get Free Consultation", href: "contact"}}
animateOnLoad={true}
/>
</div>
@@ -76,17 +71,12 @@ export default function ContactPage() {
animationType="background-highlight"
buttons={[
{
text: "Book Free Consultation",
href: "contact",
},
text: "Book Free Consultation", href: "contact"},
{
text: "View Our Portfolio",
href: "projects",
},
text: "View Our Portfolio", href: "projects"},
]}
background={{
variant: "blurBottom",
}}
variant: "plain"}}
useInvertedBackground={true}
/>
</div>

View File

@@ -22,8 +22,7 @@ export default function HomePage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Portfolio", href: "/projects" },
@@ -31,8 +30,7 @@ export default function HomePage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Architecture Design", href: "/services" },
{ label: "Interior Design", href: "/services" },
{ label: "3D Elevation Design", href: "/services" },
@@ -40,8 +38,7 @@ export default function HomePage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: +91 72753 18871", href: "tel:+917275318871" },
{ label: "Email: info@bhawanshilp.com", href: "mailto:info@bhawanshilp.com" },
{ label: "Kanpur, Uttar Pradesh", href: "#" },
@@ -57,7 +54,7 @@ export default function HomePage() {
borderRadius="rounded"
contentWidth="compact"
sizing="mediumLarge"
background="blurBottom"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
@@ -72,9 +69,7 @@ export default function HomePage() {
id: item.id,
}))}
button={{
text: "Get Free Consultation",
href: "contact",
}}
text: "Get Free Consultation", href: "contact"}}
animateOnLoad={true}
/>
</div>
@@ -89,49 +84,26 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[
{
text: "Get Free Consultation",
href: "contact",
},
text: "Get Free Consultation", href: "contact"},
{
text: "View Projects",
href: "projects",
},
text: "View Projects", href: "projects"},
]}
buttonAnimation="slide-up"
background={{
variant: "blurBottom",
}}
variant: "plain"}}
carouselItems={[
{
id: "1",
imageSrc: "http://img.b2bpic.net/free-photo/road-city_1417-1426.jpg",
imageAlt: "Modern house architecture design",
},
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/road-city_1417-1426.jpg", imageAlt: "Modern house architecture design"},
{
id: "2",
imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-7236.jpg",
imageAlt: "Luxury villa architectural design exterior",
},
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-7236.jpg", imageAlt: "Luxury villa architectural design exterior"},
{
id: "3",
imageSrc: "http://img.b2bpic.net/free-psd/modern-wooden-chair-design-elegant-comfortable-seating_191095-81468.jpg",
imageAlt: "Modern interior design living room luxury",
},
id: "3", imageSrc: "http://img.b2bpic.net/free-psd/modern-wooden-chair-design-elegant-comfortable-seating_191095-81468.jpg", imageAlt: "Modern interior design living room luxury"},
{
id: "4",
imageSrc: "http://img.b2bpic.net/free-psd/business-flyer-template_1435-1170.jpg",
imageAlt: "Modern commercial office building design",
},
id: "4", imageSrc: "http://img.b2bpic.net/free-psd/business-flyer-template_1435-1170.jpg", imageAlt: "Modern commercial office building design"},
{
id: "5",
imageSrc: "http://img.b2bpic.net/free-photo/white-tiled-building-blue-sky_181624-6378.jpg",
imageAlt: "3D architectural elevation rendering design",
},
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/white-tiled-building-blue-sky_181624-6378.jpg", imageAlt: "3D architectural elevation rendering design"},
{
id: "6",
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg",
imageAlt: "Landscape garden design outdoor modern",
},
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-stylish-european-woman-pink-fashion-suit-outside-villa_343596-2153.jpg", imageAlt: "Landscape garden design outdoor modern"},
]}
autoPlay={true}
autoPlayInterval={4000}
@@ -143,19 +115,12 @@ export default function HomePage() {
<TextSplitAbout
title="About Bhawanshilp Architects"
description={[
"Bhawanshilp Architects is a multidisciplinary design firm based in Kanpur, Uttar Pradesh, specializing in innovative architecture, interior design, and urban planning. With a team of experienced architects, civil engineers, interior designers, and contractors, we deliver high-quality residential and commercial projects that exceed expectations.",
"Our commitment to excellence, sustainable design practices, and client satisfaction has earned us a 5.0-star rating from over 500 satisfied clients. We provide comprehensive consultancy services including architecture design, structural analysis, 3D elevations, landscaping, and construction consultancy.",
"Whether you're building your dream home, planning a commercial space, or developing an urban project, our multidisciplinary team is equipped to handle every aspect of your vision with precision and creativity.",
]}
"Bhawanshilp Architects is a multidisciplinary design firm based in Kanpur, Uttar Pradesh, specializing in innovative architecture, interior design, and urban planning. With a team of experienced architects, civil engineers, interior designers, and contractors, we deliver high-quality residential and commercial projects that exceed expectations.", "Our commitment to excellence, sustainable design practices, and client satisfaction has earned us a 5.0-star rating from over 500 satisfied clients. We provide comprehensive consultancy services including architecture design, structural analysis, 3D elevations, landscaping, and construction consultancy.", "Whether you're building your dream home, planning a commercial space, or developing an urban project, our multidisciplinary team is equipped to handle every aspect of your vision with precision and creativity."]}
buttons={[
{
text: "Learn More About Us",
href: "/about",
},
text: "Learn More About Us", href: "/about"},
{
text: "Explore Our Services",
href: "/services",
},
text: "Explore Our Services", href: "/services"},
]}
showBorder={true}
useInvertedBackground={false}
@@ -174,32 +139,16 @@ export default function HomePage() {
features={[
{
id: 1,
title: "Architecture Design",
description: "Custom residential and commercial building designs that blend aesthetics with functionality",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk-still-life_23-2150440921.jpg?_wi=1",
imageAlt: "Architect designer working on blueprints",
},
title: "Architecture Design", description: "Custom residential and commercial building designs that blend aesthetics with functionality", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk-still-life_23-2150440921.jpg", imageAlt: "Architect designer working on blueprints"},
{
id: 2,
title: "Interior Design",
description: "Beautiful and functional interior spaces that reflect your style and enhance living",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151273092.jpg?_wi=1",
imageAlt: "Interior designer working on space design",
},
title: "Interior Design", description: "Beautiful and functional interior spaces that reflect your style and enhance living", imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151273092.jpg", imageAlt: "Interior designer working on space design"},
{
id: 3,
title: "3D Elevation Design",
description: "Photorealistic 3D renderings and elevations to visualize your project before construction",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-multi-ethnic-women-working-together-design-construction-blueprints-building-model-colleagues-analyzing-layout-print-plan-designing-urban-architectural-project_482257-40263.jpg?_wi=1",
imageAlt: "3D rendering software design visualization",
},
title: "3D Elevation Design", description: "Photorealistic 3D renderings and elevations to visualize your project before construction", imageSrc: "http://img.b2bpic.net/free-photo/close-up-multi-ethnic-women-working-together-design-construction-blueprints-building-model-colleagues-analyzing-layout-print-plan-designing-urban-architectural-project_482257-40263.jpg", imageAlt: "3D rendering software design visualization"},
{
id: 4,
title: "Structural Engineering",
description: "Expert structural analysis and planning ensuring safety and durability",
imageSrc: "http://img.b2bpic.net/free-photo/site-engineer-construction-site_53876-16128.jpg?_wi=1",
imageAlt: "Structural engineer analyzing building plans",
},
title: "Structural Engineering", description: "Expert structural analysis and planning ensuring safety and durability", imageSrc: "http://img.b2bpic.net/free-photo/site-engineer-construction-site_53876-16128.jpg", imageAlt: "Structural engineer analyzing building plans"},
]}
/>
</div>
@@ -211,15 +160,9 @@ export default function HomePage() {
tag="Our Impact"
metrics={[
{
id: "1",
value: "500+",
description: "Satisfied clients who have completed their dream projects with us",
},
id: "1", value: "500+", description: "Satisfied clients who have completed their dream projects with us"},
{
id: "2",
value: "5.0★",
description: "Perfect rating based on customer reviews and testimonials",
},
id: "2", value: "5.0★", description: "Perfect rating based on customer reviews and testimonials"},
]}
metricsAnimation="slide-up"
useInvertedBackground={true}
@@ -237,58 +180,22 @@ export default function HomePage() {
animationType="slide-up"
testimonials={[
{
id: "1",
name: "Rajesh Kumar",
role: "Homeowner",
testimonial: "Bhawanshilp Architects transformed our vision into reality. The attention to detail, professionalism, and timely delivery exceeded all our expectations. Highly recommended!",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code-posing_114579-15921.jpg?_wi=1",
imageAlt: "Portrait of Rajesh Kumar",
icon: Home,
id: "1", name: "Rajesh Kumar", role: "Homeowner", testimonial: "Bhawanshilp Architects transformed our vision into reality. The attention to detail, professionalism, and timely delivery exceeded all our expectations. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code-posing_114579-15921.jpg", imageAlt: "Portrait of Rajesh Kumar", icon: Home,
},
{
id: "2",
name: "Priya Singh",
role: "Property Developer",
testimonial: "Working with their team on our residential complex was seamless. Their architectural expertise and structural knowledge ensured a premium quality project that impressed all our clients.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg?_wi=1",
imageAlt: "Portrait of Priya Singh",
icon: Building2,
id: "2", name: "Priya Singh", role: "Property Developer", testimonial: "Working with their team on our residential complex was seamless. Their architectural expertise and structural knowledge ensured a premium quality project that impressed all our clients.", imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg", imageAlt: "Portrait of Priya Singh", icon: Building2,
},
{
id: "3",
name: "Amit Patel",
role: "Business Owner",
testimonial: "The interior design team created an amazing office space that perfectly reflects our brand. The 3D visualizations they provided were incredibly accurate and helped us make confident decisions.",
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2551.jpg?_wi=1",
imageAlt: "Portrait of Amit Patel",
icon: Briefcase,
id: "3", name: "Amit Patel", role: "Business Owner", testimonial: "The interior design team created an amazing office space that perfectly reflects our brand. The 3D visualizations they provided were incredibly accurate and helped us make confident decisions.", imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2551.jpg", imageAlt: "Portrait of Amit Patel", icon: Briefcase,
},
{
id: "4",
name: "Neha Sharma",
role: "Restaurant Owner",
testimonial: "From concept to completion, Bhawanshilp Architects handled our restaurant interior design beautifully. The space is functional, stunning, and our customers love it!",
imageSrc: "http://img.b2bpic.net/free-photo/real-professional-smiling-businesswoman-looking-confident-determined-face-expression-standing-suit-white-background_1258-123234.jpg",
imageAlt: "Portrait of Neha Sharma",
icon: UtensilsCrossed,
id: "4", name: "Neha Sharma", role: "Restaurant Owner", testimonial: "From concept to completion, Bhawanshilp Architects handled our restaurant interior design beautifully. The space is functional, stunning, and our customers love it!", imageSrc: "http://img.b2bpic.net/free-photo/real-professional-smiling-businesswoman-looking-confident-determined-face-expression-standing-suit-white-background_1258-123234.jpg", imageAlt: "Portrait of Neha Sharma", icon: UtensilsCrossed,
},
{
id: "5",
name: "Vikram Singh",
role: "Homeowner",
testimonial: "The structural analysis and planning were thorough and professional. We felt completely confident in the safety and durability of our home. Excellent service!",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg",
imageAlt: "Portrait of Vikram Singh",
icon: Shield,
id: "5", name: "Vikram Singh", role: "Homeowner", testimonial: "The structural analysis and planning were thorough and professional. We felt completely confident in the safety and durability of our home. Excellent service!", imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg", imageAlt: "Portrait of Vikram Singh", icon: Shield,
},
{
id: "6",
name: "Divya Kapoor",
role: "Interior Designer (Collaborative)",
testimonial: "Collaborating with Bhawanshilp on multiple projects has been outstanding. Their architectural vision and technical expertise make them invaluable partners in our work.",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-girl-is-posing-studio_176474-59483.jpg",
imageAlt: "Portrait of Divya Kapoor",
icon: Palette,
id: "6", name: "Divya Kapoor", role: "Interior Designer (Collaborative)", testimonial: "Collaborating with Bhawanshilp on multiple projects has been outstanding. Their architectural vision and technical expertise make them invaluable partners in our work.", imageSrc: "http://img.b2bpic.net/free-photo/expressive-girl-is-posing-studio_176474-59483.jpg", imageAlt: "Portrait of Divya Kapoor", icon: Palette,
},
]}
/>
@@ -301,17 +208,12 @@ export default function HomePage() {
animationType="background-highlight"
buttons={[
{
text: "Book Free Consultation",
href: "/contact",
},
text: "Book Free Consultation", href: "/contact"},
{
text: "View Our Portfolio",
href: "/projects",
},
text: "View Our Portfolio", href: "/projects"},
]}
background={{
variant: "blurBottom",
}}
variant: "plain"}}
useInvertedBackground={true}
/>
</div>

View File

@@ -19,8 +19,7 @@ export default function ProjectsPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Portfolio", href: "/projects" },
@@ -28,8 +27,7 @@ export default function ProjectsPage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Architecture Design", href: "/services" },
{ label: "Interior Design", href: "/services" },
{ label: "3D Elevation Design", href: "/services" },
@@ -37,8 +35,7 @@ export default function ProjectsPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: +91 72753 18871", href: "tel:+917275318871" },
{ label: "Email: info@bhawanshilp.com", href: "mailto:info@bhawanshilp.com" },
{ label: "Kanpur, Uttar Pradesh", href: "#" },
@@ -54,7 +51,7 @@ export default function ProjectsPage() {
borderRadius="rounded"
contentWidth="compact"
sizing="mediumLarge"
background="blurBottom"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
@@ -69,9 +66,7 @@ export default function ProjectsPage() {
id: item.id,
}))}
button={{
text: "Get Free Consultation",
href: "/contact",
}}
text: "Get Free Consultation", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -89,53 +84,17 @@ export default function ProjectsPage() {
animationType="slide-up"
products={[
{
id: "1",
name: "Modern Villa - Awas Vikas",
price: "3500 sq.ft",
variant: "Residential Villa Luxury Design",
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-swimming-pool-with-umbrella-chair-lounge-around-there-leisure-travel_74190-7877.jpg",
imageAlt: "Luxury modern villa architectural design",
},
id: "1", name: "Modern Villa - Awas Vikas", price: "3500 sq.ft", variant: "Residential Villa Luxury Design", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-swimming-pool-with-umbrella-chair-lounge-around-there-leisure-travel_74190-7877.jpg", imageAlt: "Luxury modern villa architectural design"},
{
id: "2",
name: "Contemporary Duplex House",
price: "2800 sq.ft",
variant: "Duplex Modern Architecture",
imageSrc: "http://img.b2bpic.net/free-photo/creative-people-talking-office_23-2147668785.jpg",
imageAlt: "Duplex house modern architectural design",
},
id: "2", name: "Contemporary Duplex House", price: "2800 sq.ft", variant: "Duplex Modern Architecture", imageSrc: "http://img.b2bpic.net/free-photo/creative-people-talking-office_23-2147668785.jpg", imageAlt: "Duplex house modern architectural design"},
{
id: "3",
name: "Commercial Office Space",
price: "5000 sq.ft",
variant: "Commercial Corporate Design",
imageSrc: "http://img.b2bpic.net/free-photo/floor-with-sky_1127-3197.jpg",
imageAlt: "Modern commercial office building space",
},
id: "3", name: "Commercial Office Space", price: "5000 sq.ft", variant: "Commercial Corporate Design", imageSrc: "http://img.b2bpic.net/free-photo/floor-with-sky_1127-3197.jpg", imageAlt: "Modern commercial office building space"},
{
id: "4",
name: "Luxury Residential Complex",
price: "15000 sq.ft",
variant: "Multi-Unit Premium Living",
imageSrc: "http://img.b2bpic.net/free-photo/women-resting-while-man-reading-blueprint_23-2147727654.jpg",
imageAlt: "Luxury residential complex development design",
},
id: "4", name: "Luxury Residential Complex", price: "15000 sq.ft", variant: "Multi-Unit Premium Living", imageSrc: "http://img.b2bpic.net/free-photo/women-resting-while-man-reading-blueprint_23-2147727654.jpg", imageAlt: "Luxury residential complex development design"},
{
id: "5",
name: "Interior Renovation - Apartment",
price: "1200 sq.ft",
variant: "Residential Interior Modern",
imageSrc: "http://img.b2bpic.net/free-photo/coffee-machine-kitchen-with-nobody-it-modern-dining-room-with-coffee-machine-cozy-interior-with-technology-furniture-decoration-architercture-comfortable-room_482257-14561.jpg",
imageAlt: "Modern apartment interior renovation design",
},
id: "5", name: "Interior Renovation - Apartment", price: "1200 sq.ft", variant: "Residential Interior Modern", imageSrc: "http://img.b2bpic.net/free-photo/coffee-machine-kitchen-with-nobody-it-modern-dining-room-with-coffee-machine-cozy-interior-with-technology-furniture-decoration-architercture-comfortable-room_482257-14561.jpg", imageAlt: "Modern apartment interior renovation design"},
{
id: "6",
name: "Restaurant & Bar Interior",
price: "2500 sq.ft",
variant: "Commercial Interior Contemporary",
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-with-red-carpet-floor-tables-chairs_140725-8024.jpg",
imageAlt: "Modern restaurant interior design space",
},
id: "6", name: "Restaurant & Bar Interior", price: "2500 sq.ft", variant: "Commercial Interior Contemporary", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-with-red-carpet-floor-tables-chairs_140725-8024.jpg", imageAlt: "Modern restaurant interior design space"},
]}
/>
</div>
@@ -151,31 +110,13 @@ export default function ProjectsPage() {
animationType="slide-up"
testimonials={[
{
id: "1",
name: "Rajesh Kumar",
role: "Homeowner - Modern Villa",
testimonial: "Our dream villa was brought to life exactly as envisioned. The entire process was smooth, professional, and the final result exceeded expectations.",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code-posing_114579-15921.jpg?_wi=3",
imageAlt: "Portrait of Rajesh Kumar",
icon: Home,
id: "1", name: "Rajesh Kumar", role: "Homeowner - Modern Villa", testimonial: "Our dream villa was brought to life exactly as envisioned. The entire process was smooth, professional, and the final result exceeded expectations.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code-posing_114579-15921.jpg", imageAlt: "Portrait of Rajesh Kumar", icon: Home,
},
{
id: "2",
name: "Priya Singh",
role: "Developer - Residential Complex",
testimonial: "Bhawanshilp's expertise in managing our large residential complex was instrumental in its success. Their attention to detail and project management is unmatched.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg?_wi=3",
imageAlt: "Portrait of Priya Singh",
icon: Building2,
id: "2", name: "Priya Singh", role: "Developer - Residential Complex", testimonial: "Bhawanshilp's expertise in managing our large residential complex was instrumental in its success. Their attention to detail and project management is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg", imageAlt: "Portrait of Priya Singh", icon: Building2,
},
{
id: "3",
name: "Amit Patel",
role: "Business Owner - Corporate Office",
testimonial: "The office space design perfectly reflects our company's values and culture. Our team loves the workspace, and clients are impressed with our professional environment.",
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2551.jpg?_wi=3",
imageAlt: "Portrait of Amit Patel",
icon: Briefcase,
id: "3", name: "Amit Patel", role: "Business Owner - Corporate Office", testimonial: "The office space design perfectly reflects our company's values and culture. Our team loves the workspace, and clients are impressed with our professional environment.", imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2551.jpg", imageAlt: "Portrait of Amit Patel", icon: Briefcase,
},
]}
/>
@@ -188,17 +129,12 @@ export default function ProjectsPage() {
animationType="background-highlight"
buttons={[
{
text: "Get Free Consultation",
href: "/contact",
},
text: "Get Free Consultation", href: "/contact"},
{
text: "View Services",
href: "/services",
},
text: "View Services", href: "/services"},
]}
background={{
variant: "blurBottom",
}}
variant: "plain"}}
useInvertedBackground={true}
/>
</div>

View File

@@ -19,8 +19,7 @@ export default function ServicesPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Portfolio", href: "/projects" },
@@ -28,8 +27,7 @@ export default function ServicesPage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Architecture Design", href: "/services" },
{ label: "Interior Design", href: "/services" },
{ label: "3D Elevation Design", href: "/services" },
@@ -37,8 +35,7 @@ export default function ServicesPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: +91 72753 18871", href: "tel:+917275318871" },
{ label: "Email: info@bhawanshilp.com", href: "mailto:info@bhawanshilp.com" },
{ label: "Kanpur, Uttar Pradesh", href: "#" },
@@ -54,7 +51,7 @@ export default function ServicesPage() {
borderRadius="rounded"
contentWidth="compact"
sizing="mediumLarge"
background="blurBottom"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
@@ -69,9 +66,7 @@ export default function ServicesPage() {
id: item.id,
}))}
button={{
text: "Get Free Consultation",
href: "/contact",
}}
text: "Get Free Consultation", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -88,32 +83,16 @@ export default function ServicesPage() {
features={[
{
id: 1,
title: "Architecture Design",
description: "Custom residential and commercial building designs that blend aesthetics with functionality, creating spaces that inspire and endure",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk-still-life_23-2150440921.jpg?_wi=3",
imageAlt: "Architect designer working on blueprints",
},
title: "Architecture Design", description: "Custom residential and commercial building designs that blend aesthetics with functionality, creating spaces that inspire and endure", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk-still-life_23-2150440921.jpg", imageAlt: "Architect designer working on blueprints"},
{
id: 2,
title: "Interior Design",
description: "Beautiful and functional interior spaces that reflect your style and enhance living. We create environments that harmonize form and function",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151273092.jpg?_wi=3",
imageAlt: "Interior designer working on space design",
},
title: "Interior Design", description: "Beautiful and functional interior spaces that reflect your style and enhance living. We create environments that harmonize form and function", imageSrc: "http://img.b2bpic.net/free-photo/still-life-fashion-designer-s-office_23-2151273092.jpg", imageAlt: "Interior designer working on space design"},
{
id: 3,
title: "3D Elevation Design",
description: "Photorealistic 3D renderings and elevations to visualize your project before construction, enabling confident design decisions",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-multi-ethnic-women-working-together-design-construction-blueprints-building-model-colleagues-analyzing-layout-print-plan-designing-urban-architectural-project_482257-40263.jpg?_wi=3",
imageAlt: "3D rendering software design visualization",
},
title: "3D Elevation Design", description: "Photorealistic 3D renderings and elevations to visualize your project before construction, enabling confident design decisions", imageSrc: "http://img.b2bpic.net/free-photo/close-up-multi-ethnic-women-working-together-design-construction-blueprints-building-model-colleagues-analyzing-layout-print-plan-designing-urban-architectural-project_482257-40263.jpg", imageAlt: "3D rendering software design visualization"},
{
id: 4,
title: "Structural Engineering",
description: "Expert structural analysis and planning ensuring safety, durability, and compliance with all building codes and regulations",
imageSrc: "http://img.b2bpic.net/free-photo/site-engineer-construction-site_53876-16128.jpg?_wi=3",
imageAlt: "Structural engineer analyzing building plans",
},
title: "Structural Engineering", description: "Expert structural analysis and planning ensuring safety, durability, and compliance with all building codes and regulations", imageSrc: "http://img.b2bpic.net/free-photo/site-engineer-construction-site_53876-16128.jpg", imageAlt: "Structural engineer analyzing building plans"},
]}
/>
</div>
@@ -125,15 +104,9 @@ export default function ServicesPage() {
tag="Service Excellence"
metrics={[
{
id: "1",
value: "15+",
description: "Years of combined experience in architecture, design, and engineering",
},
id: "1", value: "15+", description: "Years of combined experience in architecture, design, and engineering"},
{
id: "2",
value: "100%",
description: "Commitment to client satisfaction and project quality standards",
},
id: "2", value: "100%", description: "Commitment to client satisfaction and project quality standards"},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -147,17 +120,12 @@ export default function ServicesPage() {
animationType="background-highlight"
buttons={[
{
text: "Book Consultation",
href: "/contact",
},
text: "Book Consultation", href: "/contact"},
{
text: "View Portfolio",
href: "/projects",
},
text: "View Portfolio", href: "/projects"},
]}
background={{
variant: "blurBottom",
}}
variant: "plain"}}
useInvertedBackground={true}
/>
</div>