Skip to content

Instantly share code, notes, and snippets.

View Avenster's full-sized avatar
🎯
Focusing

Ankur Kaushal Avenster

🎯
Focusing
View GitHub Profile
"use client";
import { useState } from "react";
import Image from "next/image";
import { motion } from "framer-motion";
import { cn } from "@/lib/utils";
import { FaGraduationCap, FaFileAlt, FaMoneyBillWave, FaAward, FaQuestionCircle } from "react-icons/fa";
// These should be proper images from your school
const ADMISSION_IMAGES = {
'use client';
import { useState, useEffect } from 'react';
import Image from 'next/image';
import { motion } from 'framer-motion';
import { FaLightbulb, FaBrain, FaUsers, FaRocket } from 'react-icons/fa';
export default function TeachingPractices() {
const [activeTab, setActiveTab] = useState(0);
const [isVisible, setIsVisible] = useState(false);
@Avenster
Avenster / home
Last active April 2, 2025 08:15
'use client';
import React, { useState, useEffect, useRef } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
import { FaGraduationCap, FaBook, FaCalendarAlt, FaChalkboardTeacher, FaLaptop, FaPalette } from 'react-icons/fa';
import { BsLightningChargeFill, BsStars, BsArrowRightCircleFill } from 'react-icons/bs';
import { IoRocketSharp } from 'react-icons/io5';
const Home: React.FC = () => {
const [isLoaded, setIsLoaded] = useState(false);
"use client";
import { useState, useEffect, useRef } from "react";
import Image from "next/image";
import { ChevronLeft, ChevronRight, Info, Calendar, Users } from "lucide-react";
// Enhanced image data with school-related metadata
interface SchoolSlide {
src: string;
alt: string;
title: string;