diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index f9130d29..365329e7 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -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"; diff --git a/apps/web/src/components/landing/CreatedWithHackkit.tsx b/apps/web/src/components/landing/CreatedWithHackkit.tsx new file mode 100644 index 00000000..553ded28 --- /dev/null +++ b/apps/web/src/components/landing/CreatedWithHackkit.tsx @@ -0,0 +1,22 @@ +import Image from "next/image"; +import Link from "next/link"; +export default function CreatedWithHackkit() { + return ( +
+ HackKit Logo +
+ + Created with HackKit + +
+
+ ); +} diff --git a/apps/web/src/components/landing/Footer.tsx b/apps/web/src/components/landing/Footer.tsx index f0aa6678..2e801f2e 100644 --- a/apps/web/src/components/landing/Footer.tsx +++ b/apps/web/src/components/landing/Footer.tsx @@ -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; @@ -16,11 +17,16 @@ export default function Footer() { const [showHackathons, setShowHackathons] = useState(false); return ( -
-

- {" "} - Your Footer Here -

+
+
+

+ {" "} + Your Footer Here +

+
+
+ +
); }