Skip to content

Commit

Permalink
npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
aleckslu committed Mar 31, 2024
1 parent fd38f4d commit 1e63f5d
Show file tree
Hide file tree
Showing 5 changed files with 575 additions and 305 deletions.
44 changes: 22 additions & 22 deletions src/app/_components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,32 @@ import Image from "next/image";
import Link from "next/link";

export default function NavBar() {
return (
<div className="navbar nav-root drop-shadow-lg opacity-95 px-16 py-3">
<a className="flex-1" href="/">
<Image
return (
<div className="nav-root navbar px-16 py-3 opacity-95 drop-shadow-lg">
<a className="flex-1" href="/">
<Image
style={{ height: "auto", width: "auto" }}
src="/pomoparty-logo-white.webp"
height={50}
width={200}
alt="pomoparty-logo"
src="/pomoparty-logo-white.webp"
height={50}
width={200}
alt="pomoparty-logo"
priority={true}
/>
</a>
<div className="flex space-x-6">
<Link href="/contact" passHref>
<button className="text-white">Contact</button>
/>
</a>
<div className="flex space-x-6">
<Link href="/contact" passHref>
<button className="text-white">Contact</button>
</Link>
<Link href="/features" passHref>
<button className="text-white">Features</button>
</Link>
<Link href="/signin" passHref>
<button className="text-white">Sign In</button>
</Link>
<button className="btn rounded-full btn-primary-content text-primary border-2 shadow-md">
<Link href="/features" passHref>
<button className="text-white">Features</button>
</Link>
<Link href="/signin" passHref>
<button className="text-white">Sign In</button>
</Link>
<button className="btn-primary-content btn rounded-full border-2 text-primary shadow-md">
Sign Up
</button>
</div>
</div>
);
}
);
}
6 changes: 2 additions & 4 deletions src/app/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
export default function Contact() {
return <div>
contact
</div>;
}
return <div>contact</div>;
}
7 changes: 2 additions & 5 deletions src/app/features/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@

export default function Features() {
return <div>
features
</div>;
}
return <div>features</div>;
}
Loading

0 comments on commit 1e63f5d

Please sign in to comment.