Skip to content

Commit

Permalink
Update footer (#81)
Browse files Browse the repository at this point in the history
* centering icons in footer

* added copyright

* fixed!

* fixed formatting

---------

Co-authored-by: mshvartsberg <[email protected]>
  • Loading branch information
gavinnormand and mshvartsberg authored Jan 24, 2025
1 parent fa48f8a commit 34bd366
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions packages/components/src/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export default function Footer() {
height={0}
style={{ width: "100%", height: "auto" }}
/>
<div className="flex flex-row items-end justify-between px-12 py-16">
<div className="ml-24 flex flex-grow justify-center space-x-4">
<div className="flex flex-row content-center items-center justify-between px-12 pb-4 pt-16">
<div className="absolute left-1/2 flex -translate-x-1/2 transform space-x-4">
<Link href="https://x.com/gdlicensing">
<Image
src="/icons/twitter_icon.svg"
Expand Down Expand Up @@ -48,6 +48,20 @@ export default function Footer() {
/>
</Link>
</div>
<div className="pb-4 text-center text-lg text-[#0D0039]">
<p>
Operated by&nbsp;
<a className="underline" href="https://www.greenlinerecords.com/">
Green Line Records
</a>
</p>
<p className="text-center text-lg">
Made by students @&nbsp;
<a className="underline" href="https://www.sandboxnu.com/">
Sandbox
</a>
</p>
</div>
</footer>
);
}
2 changes: 1 addition & 1 deletion packages/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ model Group {
model GroupInvite {
inviteId String @default(cuid()) @map("id")
groupId String
initiatorId String
initiatorId String
email String
firstName String
lastName String
Expand Down

0 comments on commit 34bd366

Please sign in to comment.