Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
priyankarpal authored Jun 20, 2023
2 parents 74df0fd + 921b787 commit a7d0a07
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,18 @@ export default function Home() {
<p className="font-bold text-4xl text-center md:text-6xl" >Proudly Open-Source</p>
</div>
<div className="mx-auto w-52 md:w-52 lg:w-64">
<Image src={PoweredByVercel} alt={"vercel"} width={380} height={480} />
<a
className=""
href={"https://vercel.com/?utm_source=discordjs&utm_campaign=oss"}
target="_blank"
rel="noopener"
>
<Image src={PoweredByVercel} alt={"vercel"} width={380} height={480} />
</a>
</div>

</div>
</main>
);
}

10 changes: 9 additions & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ import React from "react";
export default function Footer() {
return (
<div className="m-7 bg-[--light-bg] dark:bg-[--dark-bg] text-center text-[--dark-bg] dark:text-[--light-bg] md:text-xl">
Developed by friends and Open Source Community
Developed by friends and <a
className="underline hover:decoration-[--primary-color] decoration-0 underline-offset-2"
href={"https://github.com/PriyansuMaurya/AI-Fusion/graphs/contributors"}
target="_blank"
rel="noopener"
>
Open Source Community
</a>

</div>
);
}

0 comments on commit a7d0a07

Please sign in to comment.