Update src/app/courses/page.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Activity, Briefcase, Code, Leaf, Palette } from "lucide-react";
|
||||
@@ -26,81 +26,40 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Courses",
|
||||
id: "/courses",
|
||||
},
|
||||
name: "Courses", id: "/courses"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Nexus University"
|
||||
button={{
|
||||
text: "Apply Now",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Apply Now", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyOne
|
||||
<FeatureCardSeven
|
||||
useInvertedBackground={false}
|
||||
title="Our Academic Programs"
|
||||
description="Dive into our innovative faculties, each offering specialized programs to unlock your potential."
|
||||
features={[
|
||||
{
|
||||
title: "Computer Science",
|
||||
description: "Master the art of coding, algorithms, and artificial intelligence to lead the tech revolution.",
|
||||
icon: Code,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laboratory-glassware-with-pink-liquid-arrangement_23-2149481703.jpg",
|
||||
imageAlt: "Laboratory glassware with pink liquid arrangement",
|
||||
},
|
||||
title: "Computer Science", description: "Master the art of coding, algorithms, and artificial intelligence to lead the tech revolution.", imageSrc: "http://img.b2bpic.net/free-photo/laboratory-glassware-with-pink-liquid-arrangement_23-2149481703.jpg", imageAlt: "Laboratory glassware with pink liquid arrangement"},
|
||||
{
|
||||
title: "Engineering & Robotics",
|
||||
description: "Innovate and design the future with hands-on experience in mechanical, electrical, and civil engineering.",
|
||||
icon: Briefcase,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-machine-close-up_23-2148892891.jpg",
|
||||
imageAlt: "Coffee machine close up",
|
||||
},
|
||||
title: "Engineering & Robotics", description: "Innovate and design the future with hands-on experience in mechanical, electrical, and civil engineering.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-machine-close-up_23-2148892891.jpg", imageAlt: "Coffee machine close up"},
|
||||
{
|
||||
title: "Business & Management",
|
||||
description: "Develop leadership skills and strategic thinking for the dynamic global marketplace.",
|
||||
icon: Briefcase,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-science-banner-with-glass-containers_23-2149495043.jpg",
|
||||
imageAlt: "Horizontal science banner with glass containers",
|
||||
},
|
||||
title: "Business & Management", description: "Develop leadership skills and strategic thinking for the dynamic global marketplace.", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-science-banner-with-glass-containers_23-2149495043.jpg", imageAlt: "Horizontal science banner with glass containers"},
|
||||
{
|
||||
title: "Health Sciences",
|
||||
description: "Prepare for a rewarding career in medicine, nursing, and public health, making a real difference.",
|
||||
icon: Activity,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laboratory-supplies-medical-work_23-2149744706.jpg",
|
||||
imageAlt: "Laboratory supplies for medical work",
|
||||
},
|
||||
title: "Health Sciences", description: "Prepare for a rewarding career in medicine, nursing, and public health, making a real difference.", imageSrc: "http://img.b2bpic.net/free-photo/laboratory-supplies-medical-work_23-2149744706.jpg", imageAlt: "Laboratory supplies for medical work"},
|
||||
{
|
||||
title: "Arts & Humanities",
|
||||
description: "Explore creativity, culture, and critical thought through a rich tapestry of disciplines.",
|
||||
icon: Palette,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-multiethnic-kids-wearing-vr-headsets-teacher-watching-them_74855-16387.jpg",
|
||||
imageAlt: "Group of multiethnic kids wearing VR headsets and teacher watching them",
|
||||
},
|
||||
title: "Arts & Humanities", description: "Explore creativity, culture, and critical thought through a rich tapestry of disciplines.", imageSrc: "http://img.b2bpic.net/free-photo/group-multiethnic-kids-wearing-vr-headsets-teacher-watching-them_74855-16387.jpg", imageAlt: "Group of multiethnic kids wearing VR headsets and teacher watching them"},
|
||||
{
|
||||
title: "Environmental Studies",
|
||||
description: "Become a champion for sustainability and address the planet's most pressing ecological issues.",
|
||||
icon: Leaf,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/she-is-prefect-students_329181-10509.jpg",
|
||||
imageAlt: "She is a prefect students",
|
||||
},
|
||||
title: "Environmental Studies", description: "Become a champion for sustainability and address the planet's most pressing ecological issues.", imageSrc: "http://img.b2bpic.net/free-photo/she-is-prefect-students_329181-10509.jpg", imageAlt: "She is a prefect students"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-freelancer-discussing-project-with-customer-phone_74855-9908.jpg?_wi=1"
|
||||
imageAlt="admissions office staff smiling"
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -109,71 +68,43 @@ export default function LandingPage() {
|
||||
logoText="Nexus University"
|
||||
columns={[
|
||||
{
|
||||
title: "Academics",
|
||||
items: [
|
||||
title: "Academics", items: [
|
||||
{
|
||||
label: "Explore Courses",
|
||||
href: "/courses",
|
||||
},
|
||||
label: "Explore Courses", href: "/courses"},
|
||||
{
|
||||
label: "Faculty & Research",
|
||||
href: "#",
|
||||
},
|
||||
label: "Faculty & Research", href: "#"},
|
||||
{
|
||||
label: "Admissions",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Admissions", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Campus Life",
|
||||
items: [
|
||||
title: "Campus Life", items: [
|
||||
{
|
||||
label: "Events",
|
||||
href: "#",
|
||||
},
|
||||
label: "Events", href: "#"},
|
||||
{
|
||||
label: "Student Organizations",
|
||||
href: "#",
|
||||
},
|
||||
label: "Student Organizations", href: "#"},
|
||||
{
|
||||
label: "Athletics",
|
||||
href: "#",
|
||||
},
|
||||
label: "Athletics", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
title: "About", items: [
|
||||
{
|
||||
label: "Our Mission",
|
||||
href: "/about",
|
||||
},
|
||||
label: "Our Mission", href: "/about"},
|
||||
{
|
||||
label: "Leadership",
|
||||
href: "/about#about-leadership",
|
||||
},
|
||||
label: "Leadership", href: "/about#about-leadership"},
|
||||
{
|
||||
label: "History",
|
||||
href: "/about#about-history",
|
||||
},
|
||||
label: "History", href: "/about#about-history"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Newsletter",
|
||||
href: "#",
|
||||
},
|
||||
label: "Newsletter", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user