3 Commits

3 changed files with 17 additions and 2 deletions

View File

@@ -36,8 +36,10 @@ export default function LandingPage() {
{ name: "Courses", id: "courses" }, { name: "Courses", id: "courses" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Team", id: "team" }, { name: "Team", id: "team" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" },
]}
{ name: "Blog", id: "/blog" },
]}
/> />
</div> </div>

View File

@@ -8,6 +8,7 @@ import { Plus } from "lucide-react";
import { NavbarProps } from "@/types/navigation"; import { NavbarProps } from "@/types/navigation";
import { useScrollState } from "./useScrollState"; import { useScrollState } from "./useScrollState";
import { cls } from "@/lib/utils"; import { cls } from "@/lib/utils";
import Link from "next/link";
const SCROLL_THRESHOLD = 50; const SCROLL_THRESHOLD = 50;
@@ -74,6 +75,10 @@ const NavbarStyleApple = ({
aria-hidden="true" aria-hidden="true"
/> />
</button> </button>
<Link href="/menu" className="hidden md:flex items-center gap-6">
<ButtonTextUnderline text="Menu" href="/menu" className="!text-base" />
</Link>
</div> </div>
<MobileMenu <MobileMenu

View File

@@ -11,6 +11,7 @@ import type { Product } from "@/lib/api/product";
import type { LucideIcon } from "lucide-react"; import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types"; import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types";
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants"; import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
import { useRouter } from "next/navigation";
type ProductCardTwoGridVariant = Exclude<GridVariant, "timeline" | "one-large-right-three-stacked-left" | "items-top-row-full-width-bottom" | "full-width-top-items-bottom-row" | "one-large-left-three-stacked-right">; type ProductCardTwoGridVariant = Exclude<GridVariant, "timeline" | "one-large-right-three-stacked-left" | "items-top-row-full-width-bottom" | "full-width-top-items-bottom-row" | "one-large-left-three-stacked-right">;
@@ -178,6 +179,7 @@ const ProductCardTwo = ({
const { products: fetchedProducts, isLoading } = useProducts(); const { products: fetchedProducts, isLoading } = useProducts();
const products = (fetchedProducts.length > 0 ? fetchedProducts : productsProp) as ProductCard[]; const products = (fetchedProducts.length > 0 ? fetchedProducts : productsProp) as ProductCard[];
const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle); const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle);
const router = useRouter();
const customGridRows = (gridVariant === "bento-grid" || gridVariant === "bento-grid-inverted") const customGridRows = (gridVariant === "bento-grid" || gridVariant === "bento-grid-inverted")
? "md:grid-rows-[22rem_22rem] 2xl:grid-rows-[26rem_26rem]" ? "md:grid-rows-[22rem_22rem] 2xl:grid-rows-[26rem_26rem]"
@@ -237,6 +239,12 @@ const ProductCardTwo = ({
actionButtonClassName={actionButtonClassName} actionButtonClassName={actionButtonClassName}
/> />
))} ))}
<button
className="text-accent hover:text-accent-hover"
onClick={() => router.push("/menu")}
>
View Full Menu
</button>
</CardStack> </CardStack>
); );
}; };