Skip to content

Commit

Permalink
lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
nethen committed Dec 13, 2024
1 parent a3f6438 commit b0608e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 6 additions & 3 deletions src/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export default function NavBar() {

const mobileNavBar = () => {
return (
<menu className={
<menu
className={
"overflow-hidden w-[100%] p-4 top-0 left-0 gap-2.5 " +
(mobileShouldOpenBurger ? "h-[100dvh] bg-background " : "h-fit")
}
Expand All @@ -68,7 +69,6 @@ export default function NavBar() {
<BurgerOpenButton isOpen={mobileShouldOpenBurger} onClick={setMobileShouldOpenBurger} />
</div>
{BurgerMenu(mobileShouldOpenBurger)}

</menu>
);
};
Expand Down Expand Up @@ -102,7 +102,10 @@ export default function NavBar() {
</motion.div>
))}
</motion.div>
<NavCTAButton className="md:col-span-2 md:col-start-8 2xl:col-span-2 2xl:col-start-11" mode={FillMode.FILL}>
<NavCTAButton
className="md:col-span-2 md:col-start-8 2xl:col-span-2 2xl:col-start-11"
mode={FillMode.FILL}
>
{`Buy GPR`}
<motion.div initial="initial" whileHover="hover">
<ExpressiveArrow size={"size-4"} />
Expand Down
4 changes: 1 addition & 3 deletions src/landing/CommunitySection.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { motion } from "motion/react";
import { ExpressiveArrow } from "@/components/iconography/Iconography";
import { ColorVariant, FillMode } from "@/components/color/Color";
import { Discord, IconMode } from "@/components/footer/socialMediaSvgs";
Expand Down Expand Up @@ -27,9 +26,8 @@ const CommunitySection = () => {
Join the Discord <Discord mode={IconMode.SET} />
</NavCTAButton>
<InlineCTA href="https://docs.google.com/forms/d/e/1FAIpQLSemVaJ6HfieS9xDKv7SqWYArHyHLV-kraraiT_VEmPL_6lkPw/viewform">
Send feedback <ExpressiveArrow />
Send feedback <ExpressiveArrow size={"size-4"} />
</InlineCTA>

</menu>

<article className="col-span-full sm:col-span-5 sm:col-start-2 md:col-span-5 md:col-start-4 lg:col-span-4 lg:col-start-6 xl:col-span-3 xl:col-start-6 2xl:col-span-6 2xl:col-start-7 3xl:col-span-5 3xl:col-start-8 4xl:col-span-4 4xl:col-start-7 flex flex-col gap-y-4 my-16">
Expand Down

0 comments on commit b0608e8

Please sign in to comment.