Talent Trail is a modern job board application built with Next.js, Tailwind CSS, and ShadCN UI. It connects job seekers and employers seamlessly, offering advanced features like job filtering, user authentication, and more.
Let Talent Trail lead the way to your next career adventure!
git clone https://github.com/your-repo/talent-trail.git
npm install
npm run dev
Talent Trail leverages the power of ShadCN UI, a library built with Radix UI primitives and Tailwind CSS. With its modular and accessible components, you can easily customize and build scalable applications.
npm install shadcn-ui
npx shadcn@latest add card
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card";
export default function Example() {
return (
<Card>
<CardHeader>
<CardTitle>Example Card</CardTitle>
</CardHeader>
<CardContent>
This is a customizable card using ShadCN.
</CardContent>
</Card>
);
}
You can easily create and customize your input with Tailwind CSS classes.
<input type="text" className="border border-gray-300 p-2 rounded-md" placeholder="Enter your name" />
You can use shadcn ready input as well
<Input placeholder="Enter your name" />
I use two libraries for icons: react-icons and lucide-react. You can easily import and use icons from either library.
import { FaHome } from "react-icons/fa";
<FaHome />
import { LucideHome } from "lucide-react";
<LucideHome />
For any support or feedback, reach out at:
mohamedelgedwy245@gmail.com