update landing
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
This commit is contained in:
parent
f38f28aaee
commit
6df659bb34
|
|
@ -212,8 +212,8 @@ export default function LandingSiteNav({
|
||||||
|
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => setOpen(true)}
|
onClick={() => setOpen((prev) => !prev)}
|
||||||
className={`flex items-center gap-2 text-sm font-semibold ${
|
className={`flex items-center gap-2 text-sm font-semibold hover:cursor-pointer ${
|
||||||
open ? " text-white" : " text-black "
|
open ? " text-white" : " text-black "
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
|
|
@ -241,14 +241,7 @@ export default function LandingSiteNav({
|
||||||
open ? "opacity-100 visible" : "opacity-0 invisible"
|
open ? "opacity-100 visible" : "opacity-0 invisible"
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<div className="flex h-full flex-col p-10">
|
<div className="flex w-[1530px] h-full flex-col p-10 mx-auto mt-10">
|
||||||
{/* TOP BAR */}
|
|
||||||
<div className="flex justify-end items-end mb-10">
|
|
||||||
<button onClick={() => setOpen(false)}>
|
|
||||||
<X size={24} />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* MENU */}
|
{/* MENU */}
|
||||||
<div className="grid grid-cols-2 gap-16 flex-1">
|
<div className="grid grid-cols-2 gap-16 flex-1">
|
||||||
<div className="flex flex-col gap-6 text-2xl font-semibold">
|
<div className="flex flex-col gap-6 text-2xl font-semibold">
|
||||||
|
|
@ -372,7 +365,7 @@ export default function LandingSiteNav({
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-auto grid grid-cols-2 gap-10 pt-10">
|
<div className="mt-auto grid grid-cols-2 gap-10 pt-10 mb-10">
|
||||||
{/* POPULAR */}
|
{/* POPULAR */}
|
||||||
<ul className="space-y-3 text-sm">
|
<ul className="space-y-3 text-sm">
|
||||||
<p className="text-[16px] opacity-70 mb-3">POPULAR PAGES</p>
|
<p className="text-[16px] opacity-70 mb-3">POPULAR PAGES</p>
|
||||||
|
|
|
||||||
|
|
@ -360,9 +360,6 @@ const SidebarContent = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col h-full">
|
<div className="flex flex-col h-full">
|
||||||
{/* ========================= */}
|
|
||||||
{/* SCROLLABLE AREA */}
|
|
||||||
{/* ========================= */}
|
|
||||||
<div className="flex-1 overflow-y-auto">
|
<div className="flex-1 overflow-y-auto">
|
||||||
<div className="flex flex-col space-y-6">
|
<div className="flex flex-col space-y-6">
|
||||||
{/* HEADER */}
|
{/* HEADER */}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue