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 apps/web/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Navbar from "@/components/shared/Navbar";
import Hero from "@/components/landing/Hero";

import About from "@/components/landing/About";

import Partners from "@/components/landing/Partners";
Expand Down
22 changes: 22 additions & 0 deletions apps/web/src/components/landing/CreatedWithHackkit.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import Image from "next/image";
import Link from "next/link";
export default function CreatedWithHackkit() {
return (
<div className="flex items-center gap-x-2 rounded-lg border-black bg-[#222222] py-[6px] pl-[7px] pr-4">
<Image
src="/img/logo/hackkit.svg"
alt="HackKit Logo"
width={35}
height={35}
/>
<div className="flex text-sm">
<Link
href="https://github.com/acmutsa/HackKit"
className="text-center hover:underline"
>
Created with HackKit
</Link>
</div>
</div>
);
}
16 changes: 11 additions & 5 deletions apps/web/src/components/landing/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Image from "next/image";
import Link from "next/link";
import { Instagram, Facebook, Twitter, Github, Disc } from "lucide-react";
import Discord from "../../../public/img/landing/discord_icon.svg";
import CreatedWithHackkit from "@/components/landing/CreatedWithHackkit";

interface Props {
className?: string;
Expand All @@ -16,11 +17,16 @@ export default function Footer() {
const [showHackathons, setShowHackathons] = useState(false);

return (
<section className="flex min-h-[25vh] w-full items-center justify-center border-t-2 border-muted-foreground">
<h1 className="text-4xl font-black md:text-5xl">
{" "}
Your Footer Here
</h1>
<section className="w-full border-t-2 border-muted-foreground">
<div className="flex min-h-[25vh] w-full items-center justify-center">
<h1 className="text-4xl font-black md:text-5xl">
{" "}
Your Footer Here
</h1>
</div>
<div className="mx-auto w-fit gap-y-3 px-5 py-5">
<CreatedWithHackkit />
</div>
</section>
);
}