diff --git a/src/app/courses/page.tsx b/src/app/courses/page.tsx index 4085f1d..b12f49a 100644 --- a/src/app/courses/page.tsx +++ b/src/app/courses/page.tsx @@ -10,11 +10,11 @@ import { Zap, TrendingUp } from "lucide-react"; export default function CoursesPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Courses", id: "courses" }, - { name: "About", id: "about" }, - { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Courses", id: "/courses" }, + { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -54,16 +54,16 @@ export default function CoursesPage() { return ( @@ -106,20 +106,20 @@ export default function CoursesPage() { description="Learn from the most sought-after skills in today's job market." tag="Featured Categories" tagIcon={TrendingUp} - tagAnimation="slide-up" + tagAnimation="blur-reveal" metrics={[ { - id: "1", value: "42", title: "Tech & Programming", description: "Master web development, AI, machine learning, and more", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQDVtz45SVsUyLfpeEZ2buzKZm/mobile-phone-screen-showing-detailed-cou-1772516018795-47721063.png?_wi=2"}, + id: "1", value: "42", title: "Tech & Programming", description: "Master web development, AI, machine learning, and more", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQDVtz45SVsUyLfpeEZ2buzKZm/mobile-phone-screen-showing-detailed-cou-1772516018795-47721063.png?"}, { - id: "2", value: "38", title: "Business & Leadership", description: "Develop management, strategy, and entrepreneurship skills", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQDVtz45SVsUyLfpeEZ2buzKZm/beautiful-illustration-depicting-learnin-1772516017971-8de17832.png?_wi=2"}, + id: "2", value: "38", title: "Business & Leadership", description: "Develop management, strategy, and entrepreneurship skills", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQDVtz45SVsUyLfpeEZ2buzKZm/beautiful-illustration-depicting-learnin-1772516017971-8de17832.png?"}, { - id: "3", value: "56", title: "Creative & Design", description: "Learn UI/UX, graphic design, animation, and digital arts", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQDVtz45SVsUyLfpeEZ2buzKZm/photograph-of-a-designer-working-at-appl-1772516018657-c0f05516.png?_wi=2"}, + id: "3", value: "56", title: "Creative & Design", description: "Learn UI/UX, graphic design, animation, and digital arts", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQDVtz45SVsUyLfpeEZ2buzKZm/photograph-of-a-designer-working-at-appl-1772516018657-c0f05516.png?"}, ]} - animationType="slide-up" + animationType="depth-3d" textboxLayout="default" useInvertedBackground={false} buttons={[{ text: "View All Categories", href: "/courses" }]} - buttonAnimation="slide-up" + buttonAnimation="blur-reveal" /> @@ -127,9 +127,9 @@ export default function CoursesPage() { ); -} \ No newline at end of file +}