File size: 4,928 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
export default function Testimonials() {
return (
<article className="bg-gray-900 overflow-hidden ">
<section className="relative max-w-7xl mx-auto pt-20 pb-12 px-4 sm:px-6 lg:px-8 lg:py-20">
<svg
className="absolute top-full left-0 transform translate-x-80 -translate-y-24 lg:hidden"
width={784}
height={404}
fill="none"
viewBox="0 0 784 404"
aria-hidden="true"
>
<defs>
<pattern
id="e56e3f81-d9c1-4b83-a3ba-0d0ac8c32f32"
x={0}
y={0}
width={20}
height={20}
patternUnits="userSpaceOnUse"
>
<rect
x={0}
y={0}
width={4}
height={4}
className="text-gray-white"
fill="currentColor"
/>
</pattern>
</defs>
<rect
width={784}
height={404}
fill="url(#e56e3f81-d9c1-4b83-a3ba-0d0ac8c32f32)"
/>
</svg>
<svg
className="hidden lg:block absolute right-full top-1/2 transform translate-x-1/2 -translate-y-1/2"
width={404}
height={784}
fill="none"
viewBox="0 0 404 784"
aria-hidden="true"
>
<defs>
<pattern
id="56409614-3d62-4985-9a10-7ca758a8f4f0"
x={0}
y={0}
width={20}
height={20}
patternUnits="userSpaceOnUse"
>
<rect
x={0}
y={0}
width={4}
height={4}
className="text-[color:var(--primary-font-color)]"
fill="currentColor"
/>
</pattern>
</defs>
<rect
width={404}
height={784}
fill="url(#56409614-3d62-4985-9a10-7ca758a8f4f0)"
/>
</svg>
<section className="relative lg:flex lg:items-center">
<section className="hidden lg:block lg:flex-shrink-0">
<img
className="h-64 w-64 rounded-full xl:h-80 xl:w-80"
src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
ia-hidden="true"
/>
</section>
<section className="relative lg:ml-10">
<svg
className="absolute top-0 left-0 transform -translate-x-8 -translate-y-24 h-36 w-36 text-white opacity-50"
stroke="currentColor"
fill="none"
viewBox="0 0 144 144"
aria-hidden="true"
>
<path
strokeWidth={2}
d="M41.485 15C17.753 31.753 1 59.208 1 89.455c0 24.664 14.891 39.09 32.109 39.09 16.287 0 28.386-13.03 28.386-28.387 0-15.356-10.703-26.524-24.663-26.524-2.792 0-6.515.465-7.446.93 2.327-15.821 17.218-34.435 32.11-43.742L41.485 15zm80.04 0c-23.268 16.753-40.02 44.208-40.02 74.455 0 24.664 14.891 39.09 32.109 39.09 15.822 0 28.386-13.03 28.386-28.387 0-15.356-11.168-26.524-25.129-26.524-2.792 0-6.049.465-6.98.93 2.327-15.821 16.753-34.435 31.644-43.742L121.525 15z"
/>
</svg>
<blockquote className="relative">
<section className="text-2xl leading-9 font-medium text-white">
<p>
Once we begin interacting with your target audience, that's
when the fun begins! As a result of our team's strategic
persistence, you will see an increase in traffic to your
Instagram profile and content.
</p>
</section>
<section className="mt-8">
<section className="flex">
<section className="flex-shrink-0 lg:hidden">
<img
className="h-9 w-9 rounded-full"
src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
/>
</section>
<section className="ml-4 lg:ml-0">
<section className="text-base font-medium text-white">
Catherine Black
</section>
<section className="text-base font-medium text-[color:var(--primary-font-color)]">
CEO, Edgy
</section>
</section>
</section>
</section>
</blockquote>
</section>
</section>
</section>
</article>
)
}
|