InnerBannerproduct.js 1.12 KB
import React from 'react'
import { Col, Row } from 'react-bootstrap'
import { cleanImage } from '../services/imageHandling'
import Heading from "@/components/Heading";
import Image from 'next/image';
const InnerBannerproduct = ({productData}) => {
    console.log("bannerData", productData)
  return (
    <>
        <section className='innerbanner-section'>
            <div className='innerbanner product-details'>
                <Row>
                    <Col>
                        <div className='product-banner'>
                             <Image width={1856} height={1086} src={cleanImage(productData?.image)} alt="" />
                             <div className='info'>
                                 <Heading el="h2" heading="About akruti luxe" />
                                 <p>The Akruti Lux Collection brings together iconic brands, bespoke designs, and architectural excellencecrafted to inspire refined living.</p>
                             </div>
                        </div>
                    </Col>
                </Row>
            </div>
        </section>
    </>
  )
}

export default InnerBannerproduct