A reusable Technology Stack component built with Next.js, Tailwind CSS, Sera UI, and GSAP.
Easily showcase the technologies your project uses in a clean, animated, and responsive design.
- ⚡ Next.js 14+
- 🎨 Tailwind CSS styling
- 🧩 Sera UI components
- 🎞️ Smooth GSAP animations
- 📱 Fully responsive & customizable
- 💻 Works seamlessly in Visual Studio Code
-
Clone Repository
git clone https://github.com/your-username/technology-stack.git cd technology-stack -
Install Dependencies
Make sure you have Node.js (>=18) installed.
npm install # or yarn install # or pnpm install
-
Install Tailwind CSS
If your project doesn’t already have Tailwind set up:
npx tailwindcss init -p
Update your
tailwind.config.js:module.exports = { content: [ "./src/**/*.{js,ts,jsx,tsx}", "./node_modules/@seraui/components/**/*.{js,ts,jsx,tsx}" ], theme: { extend: {} }, plugins: [], };
👉 Alternatively, follow Sera UI installation guide.
-
Install Sera UI
npm install @seraui/components # or yarn add @seraui/components -
Install GSAP (Required for Animations)
npm install gsap # or yarn add gsap
Import and use the TechnologyStack component in your Next.js project:
import { TechnologyStack } from "@/components/TechnologyStack";
export default function Home() {
return (
<main className="flex items-center justify-center h-screen">
<TechnologyStack/>
</main>
);
}- Open in Visual Studio Code
- Install extensions:
- Tailwind CSS IntelliSense
- Prettier (Code Formatter)
- Run dev server:
npm run dev
- Visit http://localhost:3000 to view the component.
Pull requests are welcome!
For major changes, please open an issue first to discuss what you’d like to change.
Haider Ali
