# Service Icon Grid
Category: showcase
Description: Presents a range of services in a grid, each represented by an icon, title, and brief description.
## Implementation Context
- **Primary**: Use **SenangStart CSS** for the implementation.
- **Reference**: Tailwind CSS is provided for stylistic context only.
## SenangStart CSS Usage
To use SenangStart CSS, simply include the script in your HTML `
`:
```html
My App
Hello SenangStart!
Zero config, instant styling.
```
**Documentation**: [Getting Started Guide](https://bookklik-technologies.github.io/senangstart-css/guide/getting-started.html)
## SenangStart CSS Code
```html
<section layout="container" space="m-x:auto m-y:large p-x:medium-3x tw-lg:m-y:big-3x tw-lg:p-x:big-3x">
<div layout="grid grid-cols:1" space="m-b:medium tw-lg:m-x:giant tw-lg:m-b:large">
<div layout="col-span:1"></div>
<div>
<h1 space="m-b:small tw-lg:m-b:medium" visual="text-size:grand font:tw-bold capitalize tw-lg:text-size:mega">Software Solutions Tailored for Your Business</h1>
</div>
<div layout="flex items:center">
<p space="w:[100%]" visual="text:left text-size:big opacity:80 tw-lg:text-size:huge">At Bookklik, we believe that every business deserves a software solution that fits their unique needs. Our team of expert developers creates custom solutions to help you streamline processes, boost productivity, and drive growth.</p>
</div>
</div>
<div layout="grid tw-lg:grid-cols:3" space="g:medium">
<div layout="flex col" space="p:medium" visual="rounded:medium border-w:thin border:neutral-200">
<div layout="flex items:center justify:center" space="m-b:large h:big-3x w:big-3x" visual="rounded:small bg:blue-600 text-size:giant text:white">
<i class="fas fa-vr-cardboard"></i>
</div>
<h4 space="m-b:small" visual="text-size:large font:tw-semibold">Virtual Reality (VR)<br /></h4>
<p visual="text-size:large">We provide immersive 3D visualization to wow your audience and make a lasting mark for your brands.<br /></p>
</div>
<div layout="flex col" space="p:medium" visual="rounded:medium border-w:thin border:neutral-200">
<div layout="flex items:center justify:center" space="m-b:large h:big-3x w:big-3x" visual="rounded:small bg:blue-600 text-size:giant text:white">
<i class="fas fa-cube"></i>
</div>
<h4 space="m-b:small" visual="text-size:large font:tw-semibold">Augmented Reality (AR)<br /></h4>
<p visual="text-size:large">We offer unique Augmented Reality solution for myriad applications, including tourism, education, exhibition, and many more.<br /></p>
</div>
<div layout="flex col" space="p:medium" visual="rounded:medium border-w:thin border:neutral-200">
<div layout="flex items:center justify:center" space="m-b:large h:big-3x w:big-3x" visual="rounded:small bg:blue-600 text-size:giant text:white">
<i class="fas fa-globe"></i>
</div>
<h4 space="m-b:small" visual="text-size:large font:tw-semibold">Website & Web System<br /></h4>
<p visual="text-size:large">Our team use pixels and codes to create beautiful things. We design and develop award-winning portals & websites using the latest technologies.<br /></p>
</div>
<div layout="flex col" space="p:medium" visual="rounded:medium border-w:thin border:neutral-200">
<div layout="flex items:center justify:center" space="m-b:large h:big-3x w:big-3x" visual="rounded:small bg:blue-600 text-size:giant text:white">
<i class="fas fa-mobile"></i>
</div>
<h4 space="m-b:small" visual="text-size:large font:tw-semibold">Mobile App Development<br /></h4>
<p visual="text-size:large">Our app developers build native and hybrid mobile applications on IOS, Android, and Windows, for a variety of mobile devices and tablets.<br /></p>
</div>
<div layout="flex col" space="p:medium" visual="rounded:medium border-w:thin border:neutral-200">
<div layout="flex items:center justify:center" space="m-b:large h:big-3x w:big-3x" visual="rounded:small bg:blue-600 text-size:giant text:white">
<i class="fas fa-palette"></i>
</div>
<h4 space="m-b:small" visual="text-size:large font:tw-semibold">Graphic Design<br /></h4>
<p visual="text-size:large">We help you find the right pixels combination for your brands or products.<br /></p>
</div>
<div layout="flex col" space="p:medium" visual="rounded:medium border-w:thin border:neutral-200">
<div layout="flex items:center justify:center" space="m-b:large h:big-3x w:big-3x" visual="rounded:small bg:blue-600 text-size:giant text:white">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<h4 space="m-b:small" visual="text-size:large font:tw-semibold">Training<br /></h4>
<p visual="text-size:large">We provide training in web and mobile application development for beginners who are eager to learn.<br /></p>
</div>
</div>
</section>
```
## Tailwind CSS Code
```html
<section class="container mx-auto my-8 px-6 lg:my-16 lg:px-16">
<div class="mb-4 grid grid-cols-1 lg:mx-24 lg:mb-8">
<div class="col-span-1"></div>
<div>
<h1 class="mb-2 text-3xl font-bold capitalize lg:mb-4 lg:text-6xl">Software Solutions Tailored for Your Business</h1>
</div>
<div class="flex items-center">
<p class="w-full text-left text-xl opacity-80 lg:text-2xl">At Bookklik, we believe that every business deserves a software solution that fits their unique needs. Our team of expert developers creates custom solutions to help you streamline processes, boost productivity, and drive growth.</p>
</div>
</div>
<div class="grid gap-4 lg:grid-cols-3">
<div class="flex flex-col rounded-lg border border-neutral-200 p-4">
<div class="mb-8 flex h-16 w-16 items-center justify-center rounded-md bg-blue-600 text-4xl text-white">
<i class="fas fa-vr-cardboard"></i>
</div>
<h4 class="mb-2 text-lg font-semibold">Virtual Reality (VR)<br /></h4>
<p class="text-lg">We provide immersive 3D visualization to wow your audience and make a lasting mark for your brands.<br /></p>
</div>
<div class="flex flex-col rounded-lg border border-neutral-200 p-4">
<div class="mb-8 flex h-16 w-16 items-center justify-center rounded-md bg-blue-600 text-4xl text-white">
<i class="fas fa-cube"></i>
</div>
<h4 class="mb-2 text-lg font-semibold">Augmented Reality (AR)<br /></h4>
<p class="text-lg">We offer unique Augmented Reality solution for myriad applications, including tourism, education, exhibition, and many more.<br /></p>
</div>
<div class="flex flex-col rounded-lg border border-neutral-200 p-4">
<div class="mb-8 flex h-16 w-16 items-center justify-center rounded-md bg-blue-600 text-4xl text-white">
<i class="fas fa-globe"></i>
</div>
<h4 class="mb-2 text-lg font-semibold">Website & Web System<br /></h4>
<p class="text-lg">Our team use pixels and codes to create beautiful things. We design and develop award-winning portals & websites using the latest technologies.<br /></p>
</div>
<div class="flex flex-col rounded-lg border border-neutral-200 p-4">
<div class="mb-8 flex h-16 w-16 items-center justify-center rounded-md bg-blue-600 text-4xl text-white">
<i class="fas fa-mobile"></i>
</div>
<h4 class="mb-2 text-lg font-semibold">Mobile App Development<br /></h4>
<p class="text-lg">Our app developers build native and hybrid mobile applications on IOS, Android, and Windows, for a variety of mobile devices and tablets.<br /></p>
</div>
<div class="flex flex-col rounded-lg border border-neutral-200 p-4">
<div class="mb-8 flex h-16 w-16 items-center justify-center rounded-md bg-blue-600 text-4xl text-white">
<i class="fas fa-palette"></i>
</div>
<h4 class="mb-2 text-lg font-semibold">Graphic Design<br /></h4>
<p class="text-lg">We help you find the right pixels combination for your brands or products.<br /></p>
</div>
<div class="flex flex-col rounded-lg border border-neutral-200 p-4">
<div class="mb-8 flex h-16 w-16 items-center justify-center rounded-md bg-blue-600 text-4xl text-white">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<h4 class="mb-2 text-lg font-semibold">Training<br /></h4>
<p class="text-lg">We provide training in web and mobile application development for beginners who are eager to learn.<br /></p>
</div>
</div>
</section>
```