This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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 = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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; |