-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppsSimplifySection.astro
More file actions
48 lines (47 loc) · 1.84 KB
/
AppsSimplifySection.astro
File metadata and controls
48 lines (47 loc) · 1.84 KB
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
---
import workplace from "@/assets/images/workplace.jpg";
import { Image } from "astro:assets";
---
<section>
<div class="p-[20px] lg:py-[50px]">
<div class="mx-auto">
<div class="mb-[20px]">
<h2
class="text-[27.3px] font-bold leading-[32.8px] tracking-[-0.54px] md:text-[31.2px] md:leading-[37.5px] md:tracking-[-0.62px]"
>
Simplifying daily tasks with handy mini apps
</h2>
</div>
<div class="section-description flex-row-reverse items-start justify-between gap-[20px] lg:flex">
<div class="section-image mb-[10px] h-[150px] basis-[50%] md:h-[300px]">
<figure>
<Image
src={workplace}
width={400}
alt="workplace"
class="h-[150px] w-full rounded-[10px] object-cover md:h-[300px]"
/>
</figure>
</div>
<div class="basis-[50%]">
<p
class="appSimplifyText mb-[20px] text-[14px] leading-[22.4px] text-[#999] md:text-[16px] md:leading-[25.6px]"
>
Based out of Bengaluru city, Recursive Zero stands as a pioneer in innovation, meticulously crafting small
yet powerful apps aimed at simplifying your daily tasks and enhancing your storage efficiency. Our
cutting-edge solutions are woven with a touch of simplicity, transforming your workflow with remarkable
efficiency. Traverse through an intuitive app experience with Recursive Zero, fueling your productivity to
unprecedented heights
</p>
<div>
<a href="">
<button class="h-[40px] rounded-[5px] bg-[#ffcc00] px-[20px] text-[14px] text-[#111] md:text-[16px]">
Apps Simplify Life
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</section>