fix(www): add

This commit is contained in:
Musa 2025-12-18 15:00:50 -08:00
parent 66ebc06243
commit 9923cd7a3a
28 changed files with 25 additions and 43 deletions

View file

@ -228,4 +228,3 @@ body {
overflow-x: hidden;
}
}

View file

@ -15,4 +15,3 @@
"typecheck": "tsc --noEmit"
}
}

View file

@ -10,4 +10,3 @@
"tailwindcss": "^4"
}
}

View file

@ -13,4 +13,3 @@ const config: Config = {
};
export default config;

View file

@ -17,4 +17,3 @@
},
"exclude": ["node_modules"]
}

View file

@ -21,4 +21,3 @@
"**/*.mts"
]
}

View file

@ -7,4 +7,3 @@
"nextjs.json"
]
}

View file

@ -52,4 +52,3 @@
"react-dom": "^19.2.0"
}
}

View file

@ -28,8 +28,8 @@ export function Footer() {
{/* Left Column - Tagline and Copyright */}
<div className="flex flex-col">
<p className="ext-base sm:text-lg md:text-xl lg:text-[22px] font-sans font-normal tracking-[-1.0px] sm:tracking-[-1.22px]! text-black mb-6 sm:mb-8">
Plano is a powerful agent delivery infrastructure platform that is framework-friendly,
and empowers developers and teams to seamlessly build, deliver, and scale agentic
Plano is a powerful agent delivery infrastructure platform that is framework-friendly,
and empowers developers and teams to seamlessly build, deliver, and scale agentic
applications.
</p>
@ -107,4 +107,3 @@ export function Footer() {
</footer>
);
}

View file

@ -15,4 +15,3 @@ export function Logo() {
</div>
);
}

View file

@ -287,4 +287,3 @@ export function Navbar() {
</nav>
);
}

View file

@ -63,4 +63,3 @@ function Button({
}
export { Button, buttonVariants };

View file

@ -141,4 +141,3 @@ export {
DialogTitle,
DialogTrigger,
};

View file

@ -20,4 +20,3 @@ export {
// Utils
export { cn } from "./lib/utils";

View file

@ -4,4 +4,3 @@ import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}

View file

@ -12,4 +12,3 @@
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}