-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from TEDx-SJEC/cta
Cta
- Loading branch information
Showing
4 changed files
with
99 additions
and
68 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
"use client"; | ||
|
||
import { Button } from "@/components/ui/button"; | ||
|
||
export function CtaSection() { | ||
return ( | ||
<div className="relative min-h-screen flex items-center justify-center overflow-hidden bg-black"> | ||
<div | ||
className="absolute inset-0 bg-gradient-to-b from-black via-black to-redTheme" | ||
style={{ | ||
maskImage: "radial-gradient(ellipse 100% 80% at 50% 100%, black, transparent)", | ||
WebkitMaskImage: "radial-gradient(ellipse 100% 80% at 50% 100%, black, transparent)", | ||
}} | ||
></div> | ||
<div className="relative z-10 max-w-3xl mx-auto text-center px-6"> | ||
<h1 className="text-4xl sm:text-5xl md:text-6xl font-bold mb-6 text-white"> | ||
Live What's Worth Living | ||
</h1> | ||
<p className="text-lg sm:text-xl md:text-2xl mb-8 text-white/80"> | ||
Celebrate the joy of accomplishment with an app designed to track your progress and | ||
motivate your efforts. | ||
</p> | ||
<Button className="bg-orange-600 hover:bg-orange-700 text-white font-semibold py-3 px-8 text-lg rounded-md"> | ||
Register Now | ||
</Button> | ||
</div> | ||
</div> | ||
); | ||
} |
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