diff --git a/src/components/Breadcrumb.astro b/src/components/Breadcrumb.astro index eba62d4..973ffe4 100644 --- a/src/components/Breadcrumb.astro +++ b/src/components/Breadcrumb.astro @@ -1,11 +1,25 @@ --- -import "../styles/app.css"; - -const { path } = Astro.props; --- - + + + diff --git a/src/components/Footer.astro b/src/components/Footer.astro index ff36b8c..3b2d840 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -2,112 +2,170 @@ import { Image } from "astro:assets"; import logo from "../assets/logo.png"; -// --- Configuration: Edit URLs here --- const facebookUrl = - "https://www.facebook.com/p/Multidisciplinary-AI-Research-Center-MARC-61566611961677/"; // e.g., https://www.facebook.com/marc.pdn -const linkedinUrl = "https://www.linkedin.com/company/multidisciplinaryai"; // e.g., https://www.linkedin.com/company/marc-pdn -const youtubeUrl = "https://www.youtube.com/@MARCUoP"; // e.g., https://www.youtube.com/@marc_pdn + "https://www.facebook.com/p/Multidisciplinary-AI-Research-Center-MARC-61566611961677/"; +const linkedinUrl = "https://www.linkedin.com/company/multidisciplinaryai"; +const youtubeUrl = "https://www.youtube.com/@MARCUoP"; const facultyUrl = "https://eng.pdn.ac.lk/"; -// ------------------------------------- + +const exploreLinks = [ + { href: "/Research", label: "Research areas" }, + { href: "/projects", label: "Projects" }, + { href: "/publications", label: "Publications" }, +]; +const aboutLinks = [ + { href: "/people", label: "People" }, + { href: "/news", label: "News" }, + { href: facultyUrl, label: "Faculty of Engineering", external: true }, +]; +const year = new Date().getFullYear(); --- -