forked from veda/www_veda_2025
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import Image from 'next/image'
 | 
						|
import React from 'react';
 | 
						|
import { Button } from '@/components/Button'
 | 
						|
import { Container } from '@/components/Container'
 | 
						|
import backgroundImage from '@/images/background-call-to-action.jpg'
 | 
						|
import '@/styles/tailwind.css'
 | 
						|
 | 
						|
const ThirdFeatures = () => {
 | 
						|
    return (
 | 
						|
      <div className="relative bg-white">
 | 
						|
        <div className="mx-auto max-w-7xl lg:grid lg:grid-cols-12 lg:gap-x-8 lg:px-8">
 | 
						|
          <div className="px-6 pb-24 pt-10 sm:pb-32 lg:col-span-7 lg:px-0 lg:pb-56 lg:pt-48 xl:col-span-6">
 | 
						|
            <div className="mx-auto max-w-2xl lg:mx-0">
 | 
						|
              <img
 | 
						|
                alt="Your Company"
 | 
						|
                src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
 | 
						|
                className="h-11"
 | 
						|
              />
 | 
						|
              <div className="hidden sm:mt-32 sm:flex lg:mt-16">
 | 
						|
                <div className="relative rounded-full px-3 py-1 text-sm leading-6 text-gray-500 ring-1 ring-gray-900/10 hover:ring-gray-900/20">
 | 
						|
                  Anim aute id magna aliqua ad ad non deserunt sunt.{' '}
 | 
						|
                  <a href="#" className="whitespace-nowrap font-semibold text-indigo-600">
 | 
						|
                    <span aria-hidden="true" className="absolute inset-0" />
 | 
						|
                    Read more <span aria-hidden="true">→</span>
 | 
						|
                  </a>
 | 
						|
                </div>
 | 
						|
              </div>
 | 
						|
              <h1 className="mt-24 text-4xl font-bold tracking-tight text-gray-800 sm:mt-10 sm:text-6xl">
 | 
						|
                Data to enrich your online business
 | 
						|
              </h1>
 | 
						|
              <p className="mt-6 text-lg leading-8 text-gray-600">
 | 
						|
                Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo. Elit sunt amet
 | 
						|
                fugiat veniam occaecat fugiat aliqua.
 | 
						|
              </p>
 | 
						|
              <div className="mt-10 flex items-center gap-x-6">
 | 
						|
                <a
 | 
						|
                  href="#"
 | 
						|
                  className="rounded-md bg-gold-800 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
 | 
						|
                >
 | 
						|
                  Get started
 | 
						|
                </a>
 | 
						|
                <a href="#" className="text-sm font-semibold leading-6 text-gray-800">
 | 
						|
                  Learn more <span aria-hidden="true">→</span>
 | 
						|
                </a>
 | 
						|
              </div>
 | 
						|
            </div>
 | 
						|
          </div>
 | 
						|
          <div className="relative lg:col-span-5 lg:-mr-8 xl:absolute xl:inset-0 xl:left-1/2 xl:mr-0">
 | 
						|
            <img
 | 
						|
              alt=""
 | 
						|
              src="https://images.unsplash.com/photo-1498758536662-35b82cd15e29?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2102&q=80"
 | 
						|
              className="aspect-[3/2] w-full bg-gray-50 object-cover lg:absolute lg:inset-0 lg:aspect-auto lg:h-full"
 | 
						|
            />
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    )
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
export default ThirdFeatures; |