Skip to content

Commit

Permalink
Footer and Favicon Fix (#31)
Browse files Browse the repository at this point in the history
* changed some table styles and added some margin on talks

* added that talks margin

* A few styling changes in the Nav, a change to a minimum height (to keep the footer small), and I added Mariola's bio

* Made past talks available on the mobile nav

* fixed footer and favicon
  • Loading branch information
Nealium104 authored Oct 3, 2023
1 parent f6cf830 commit c37021f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions src/app/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import Link from "next/link";
export default function Footer() {
return (
<>
<footer className="text-text bg-accent font-montserrat text-sm">
<footer className="text-text bg-accent font-montserrat text-sm py-2 ">
<div className="md:w-1/3 mx-auto flex flex-col flex-shrink">
<div className="flex flex-col md:flex-row justify-center items-center gap-4 my-2">
<div className="flex flex-col md:flex-row justify-center items-center gap-4">
<Link
href="/"
className="my-2 w-48 text-center transition duration-150 hover:text-white hover:scale-110"
Expand All @@ -32,12 +32,18 @@ export default function Footer() {
>
Tickets
</a>
{/* <Link
<Link
className="my-2 w-48 text-center whitespace-nowrap transition duration-150 hover:text-white hover:scale-110"
href="/team"
>
Team
</Link>
<Link
href="/past"
className="my-2 w-48 text-center whitespace-nowrap transition duration-150 hover:text-white hover:scale-110"
>
Past Events
</Link> */}
Past Talks
</Link>
</div>
<div className="flex flex-col items-center">
<div className="flex w-1/2 md:w-1/4 justify-center text-2xl my-2 gap-4">
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function RootLayout({
className={`bg-accent text-text ${montserrat.variable} ${cabin.variable}`}
>
<head>
<link rel="icon" href="./favicon.ico" />
<link rel="icon" href="/images/favicon.ico" />
</head>
<body className="bg-background flex flex-col">
<Nav />
Expand Down

0 comments on commit c37021f

Please sign in to comment.