Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env.example

This file was deleted.

2 changes: 2 additions & 0 deletions src/app/league/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { UpcomingEvents } from "@/components/league/sections/upcoming-events";
import { Podium } from "@/components/league/sections/podium";
import { Contest } from "@/models/contest.model";
import { LevelEnum } from "@/models/level.enum";
import Footer from "@/components/shared/footer";

const navLinks = [
{ key: "home", label: "Home", href: "/" },
Expand Down Expand Up @@ -123,6 +124,7 @@ export default function LeagueHomePage() {
<Rules />
<UpcomingEvents events={hard_coded_events} />
<Podium />
<Footer />
</HeroUIProvider>
);
}
2 changes: 2 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { Members } from "@/components/home/sections/members";
import { HeroUIProvider } from "@heroui/react";
import MainNavbar from '@/components/shared/main-navbar';
import { CursorWrapper } from "@/components/home/ui/cursor-wrapper";
import Footer from "../components/shared/footer";

const navLinks = [
{ key: "home", label: "Home", href: "#home" },
Expand All @@ -24,6 +25,7 @@ export default function HomePage() {
<AboutUs />
<Members />
<Activities />
<Footer />
</CursorWrapper>
</HeroUIProvider>
);
Expand Down
44 changes: 44 additions & 0 deletions src/components/shared/footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
'use client';

import { IconBrandInstagram, IconBrandLinkedin } from "@tabler/icons-react";

export default function Footer() {
return (
<footer className="w-full px-6 py-8 bg-white/80 dark:bg-gray-900/80 backdrop-blur-sm shadow-lg border-t border-gray-200/20 dark:border-gray-700/20 mt-auto">
<div className="max-w-7xl mx-auto">
<div className="grid grid-cols-3 items-center">
{/* Título a la izquierda */}
<div className="flex flex-col justify-self-start">
<h3 className="text-sm text-center text-[--azul-noche] dark:text-white">Capítulo Javeriano ACM</h3>
</div>

{/* Logo en el centro */}
<div className="flex justify-center">
<img
src="/Logo_Oscuro.svg"
alt="Logo ACM Javeriana"
className="h-8 dark:hidden"
draggable={false}
/>
<img
src="/Logo_Claro.svg"
alt="Logo ACM Javeriana"
className="h-8 hidden dark:block"
draggable={false}
/>
</div>

{/* Redes sociales a la derecha - apiladas verticalmente */}
<div className="flex flex-col items-end gap-2 justify-self-end">
<a href="https://www.linkedin.com/company/capitulo-javeriano-acm/" target="_blank" rel="noopener noreferrer">
<IconBrandLinkedin className="w-5 h-5 text-[--azul-noche] dark:text-white hover:opacity-70 transition-opacity" />
</a>
<a href="https://www.instagram.com/acmjaveriana" target="_blank" rel="noopener noreferrer">
<IconBrandInstagram className="w-5 h-5 text-[--azul-noche] dark:text-white hover:opacity-70 transition-opacity" />
</a>
</div>
</div>
</div>
</footer>
);
}