Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cursor hover #218

Merged
merged 7 commits into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
202 changes: 101 additions & 101 deletions components/tracks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,105 +6,105 @@ import { cn } from "@/lib/utils";
type Props = {};

export default function Tracks({}: Props) {
return (
<section className="text-center md:my-20 my-10">
<h4 className="md:text-3xl text-xl text-black font-bold dark:text-white">
Our Batches
</h4>
<p>Master the Frontend Development with Frontend Freaks</p>
return (
<section className="text-center md:my-20 my-10">
<h4 className="md:text-3xl text-xl text-black font-bold dark:text-white">
Our Batches
</h4>
<p>Master the Frontend Development with Frontend Freaks</p>

{/* Cards Wrapper */}
<div className="flex gap-6 mt-8 md:flex-row flex-col">
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg">
<Image
src="/learn_img.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">Build Your Foundation</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Make your foundation strong by learning HTML, CSS, JS, Git, and
GitHub. Join this batch if you want to make your foundation as
strong as concrete.
</p>
</div>
<Link
href="/batch/learn/html/basic"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg">
<Image
src="/dsa_in_javascript.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">DSA In Javascript</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Enroll for this batch to ace DSA skills with javascript, enhancing
your skills for job success.
</p>
</div>
<Link
href="/batch/dsa/loops"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg">
<Image
src="/build_img.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">Build Projects</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Build the project with the latest technologies like React, Redux,
and Next.js. Join this batch if you want to be a part of it.
</p>
</div>
<Link
href="/batch/build/react/fundamentals"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg">
<Image
src="/hire_img.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">Get Hired</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Enroll for this batch to ace interviews with tips, tricks, and
mock sessions, enhancing your skills for job success.
</p>
</div>
<Link
href="/batch/hire/hire"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
</div>
</section>
);
}
{/* Cards Wrapper */}
<div className="flex gap-6 mt-8 md:flex-row flex-col">
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg group hover:scale-105 transition-transform">
<Image
src="/learn_img.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">Build Your Foundation</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Make your foundation strong by learning HTML, CSS, JS, Git, and
GitHub. Join this batch if you want to make your foundation as
strong as concrete.
</p>
</div>
<Link
href="/batch/learn/html/basic"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg group hover:scale-105 transition-transform">
<Image
src="/dsa_in_javascript.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">DSA In Javascript</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Enroll for this batch to ace DSA skills with javascript, enhancing
your skills for job success.
</p>
</div>
<Link
href="/batch/dsa/loops"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg group hover:scale-105 transition-transform">
<Image
src="/build_img.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">Build Projects</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Build the project with the latest technologies like React, Redux,
and Next.js. Join this batch if you want to be a part of it.
</p>
</div>
<Link
href="/batch/build/react/fundamentals"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
<div className="flex flex-col gap-3 items-center border p-4 rounded-lg group hover:scale-105 transition-transform">
<Image
src="/hire_img.svg"
alt="learn"
width={250}
height={250}
className="rounded bg-white"
/>
<div className="flex flex-col gap-2 flex-grow">
<h3 className="text-xl font-bold ">Get Hired</h3>
<p className="text-md text-slate-600 max-w-md dark:text-white">
Enroll for this batch to ace interviews with tips, tricks, and
mock sessions, enhancing your skills for job success.
</p>
</div>
<Link
href="/batch/hire/hire"
className={cn(buttonVariants({ variant: "rounded" }), "px-8 py-2 mt-4")}
>
Join
</Link>
</div>
</div>
</section>
);
}
Loading