[feat] Landing update
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import { Button } from "./ui/button";
|
||||
import { buttonVariants } from "./ui/button";
|
||||
import { HeroCards } from "./HeroCards";
|
||||
import { GitHubLogoIcon } from "@radix-ui/react-icons";
|
||||
|
||||
import { Link } from "react-router-dom";
|
||||
|
||||
export const Hero = () => {
|
||||
return (
|
||||
@@ -10,45 +10,34 @@ export const Hero = () => {
|
||||
<main className="text-5xl md:text-6xl font-bold">
|
||||
<h1 className="inline">
|
||||
<span className="inline bg-gradient-to-r from-[#F596D3] to-[#D247BF] text-transparent bg-clip-text">
|
||||
Shadcn
|
||||
SkillHub
|
||||
</span>{" "}
|
||||
landing page
|
||||
</h1>{" "}
|
||||
for{" "}
|
||||
<h2 className="inline">
|
||||
<span className="inline bg-gradient-to-r from-[#61DAFB] via-[#1fc0f1] to-[#03a3d7] text-transparent bg-clip-text">
|
||||
React
|
||||
Organizations
|
||||
</span>{" "}
|
||||
developers
|
||||
</h2>
|
||||
</main>
|
||||
|
||||
<p className="text-xl text-muted-foreground md:w-10/12 mx-auto lg:mx-0">
|
||||
Build your React landing page effortlessly with the required sections
|
||||
to your project.
|
||||
Build dream teams for hackatons depends on your needs from scratch
|
||||
with SkillHub.
|
||||
</p>
|
||||
|
||||
<div className="space-y-4 md:space-y-0 md:space-x-4">
|
||||
<Button className="w-full md:w-1/3">Get Started</Button>
|
||||
|
||||
<a
|
||||
href="https://github.com/leoMirandaa/shadcn-landing-page.git"
|
||||
target="_blank"
|
||||
className={`w-full md:w-1/3 ${buttonVariants({
|
||||
variant: "outline",
|
||||
<Link
|
||||
to={"login"}
|
||||
className={`w-full md:w-1/3 border ${buttonVariants({
|
||||
variant: "default",
|
||||
})}`}
|
||||
>
|
||||
Github Repository
|
||||
<GitHubLogoIcon className="ml-2 w-5 h-5" />
|
||||
</a>
|
||||
Get started
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Hero cards sections */}
|
||||
<div className="z-10">
|
||||
<HeroCards />
|
||||
</div>
|
||||
|
||||
{/* Shadow effect */}
|
||||
<div className="shadow"></div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user