Skip to content

Commit

Permalink
page links
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenzeller committed May 31, 2024
1 parent 2f78293 commit 2dd80d7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
5 changes: 2 additions & 3 deletions app/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ export default function MobileHeader() {
<div tabIndex={0} role="button" className="bg-primary text-black p-1 border-b-accent border-b-4 rounded-2xl block w-28 text-center active:mt-1 active:border-0" >
Projects
</div>
<ul tabIndex={0} className="text-black dropdown-content z-10 mt-1 p-2 bg-primary border-4 border-accent rounded-box w-52 shadow-right-bottom">
<li><a>Item 1</a></li>
<li><a>Item 2</a></li>
<ul tabIndex={0} className="text-black dropdown-content mt-1 p-2 bg-primary border-4 border-accent rounded-box w-52 shadow-right-bottom z-50 flex flex-col">
<Link href="/projects/wendy-and-the-sprite" className="hover:bg-white p-2 rounded-2xl w-full">Wendy and the Sprite</Link>
</ul>
</div>
</li>
Expand Down
10 changes: 10 additions & 0 deletions app/projects/wendy-and-the-sprite/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import Header from "@/app/components/Header";
import Footer from "@/app/components/Footer";
export default function Publishing() {
return (
<main className="flex min-h-screen flex-col bg-base-100">
<Header />
<Footer/>
</main>
)
}
5 changes: 1 addition & 4 deletions app/publishing/design/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import Footer from "@/app/components/Footer";
import Header from "@/app/components/Header";
import mailLogo from "@/public/mail.svg"
import PageTitle from "@/app/components/PageTitle";
import Link from "next/link";
import Image from "next/image";
import AnthologyCarousel from "@/app/components/AnthologyCarousel";


export default function Anthology() {
return (
Expand Down

0 comments on commit 2dd80d7

Please sign in to comment.