-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5be4cd3
commit 057ec44
Showing
2 changed files
with
78 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,22 @@ | ||
import { Button } from "@/components/ui/button"; | ||
import BoxReveal from "@/components/ui/box-reveal"; | ||
|
||
export async function HealthArticle() { | ||
return ( | ||
<div className="size-full items-center justify-center overflow-hidden pt-8 max-w-[80vw] mx-auto"> | ||
<BoxReveal boxColor={"#e51d15"} duration={1}> | ||
<div> | ||
<p className="text-2xl font-semibold hidden sm:block"> | ||
Every Year, Millions of Lives Are Lost Because Critical Medical Data Isn’t Accessible in Time. <span className="text-red-600 font-bold">OpenTag</span> Lets You Change That—With Just a QR Code. | ||
</p> | ||
<p className="text-xl font-semibold sm:hidden"> | ||
Critical <span className="text-red-600 font-bold">Medical Data</span> Isn't Accessible in Time. | ||
</p> | ||
<p className="text-3xl sm:text-4xl font-semibold"> | ||
Every Year, Millions of Lives Are Lost Because Critical Medical Data Isn't Accessible in Time. <span className="text-red-600 font-bold">OpenTag</span> Lets You Change That—With Just a QR Code. | ||
</p> | ||
</div> | ||
</BoxReveal> | ||
|
||
<BoxReveal boxColor={"#e51d15"} duration={1}> | ||
<p className="mt-[1.5rem]"> | ||
Every second counts in an emergency. When medical responders lack access to vital information like your blood type, allergies, or medical history, lives can hang in the balance. With openTag, a free and open-source solution, you can ensure your critical medical data is available instantly through a simple QR code. Accessible, customizable, and built to save lives—openTag empowers everyone to make a difference. | ||
<p className="mt-6 text-xl sm:text-2xl"> | ||
Every second counts in an emergency. When medical responders lack access to vital information like your blood type, allergies, or medical history, lives can hang in the balance. With OpenTag, a free and open-source solution, you can ensure your critical medical data is available instantly through a simple QR code. Accessible, customizable, and built to save lives—OpenTag empowers everyone to make a difference. | ||
</p> | ||
</BoxReveal> | ||
|
||
</div> | ||
); | ||
} |