From 9923cd7a3a240989008951ceafc6fc866bc2fc35 Mon Sep 17 00:00:00 2001 From: Musa Date: Thu, 18 Dec 2025 15:00:50 -0800 Subject: [PATCH] fix(www): add --- apps/www/.gitignore | 2 +- apps/www/public/file.svg | 2 +- apps/www/public/globe.svg | 2 +- apps/www/public/logos/sandisk.svg | 2 +- apps/www/public/logos/tmobile.svg | 28 ++++++++++---------- apps/www/public/next.svg | 2 +- apps/www/public/vercel.svg | 2 +- apps/www/public/window.svg | 2 +- apps/www/src/app/layout.tsx | 2 +- apps/www/src/components/NetworkAnimation.tsx | 2 +- arch/tools/TESTING.md | 1 - packages/shared-styles/globals.css | 1 - packages/shared-styles/package.json | 1 - packages/tailwind-config/package.json | 1 - packages/tailwind-config/tailwind.config.ts | 1 - packages/tsconfig/base.json | 1 - packages/tsconfig/nextjs.json | 1 - packages/tsconfig/package.json | 1 - packages/ui/package.json | 1 - packages/ui/src/components/Footer.tsx | 5 ++-- packages/ui/src/components/Logo.tsx | 1 - packages/ui/src/components/Navbar.tsx | 1 - packages/ui/src/components/ui/button.tsx | 1 - packages/ui/src/components/ui/dialog.tsx | 1 - packages/ui/src/index.ts | 1 - packages/ui/src/lib/utils.ts | 1 - packages/ui/tsconfig.json | 1 - turbo.json | 1 - 28 files changed, 25 insertions(+), 43 deletions(-) diff --git a/apps/www/.gitignore b/apps/www/.gitignore index fb6badb4..72e79997 100644 --- a/apps/www/.gitignore +++ b/apps/www/.gitignore @@ -41,4 +41,4 @@ yarn-error.log* next-env.d.ts # sanity -.sanity/ \ No newline at end of file +.sanity/ diff --git a/apps/www/public/file.svg b/apps/www/public/file.svg index 004145cd..16fe3d3a 100644 --- a/apps/www/public/file.svg +++ b/apps/www/public/file.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/apps/www/public/globe.svg b/apps/www/public/globe.svg index 567f17b0..c7215fe0 100644 --- a/apps/www/public/globe.svg +++ b/apps/www/public/globe.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/apps/www/public/logos/sandisk.svg b/apps/www/public/logos/sandisk.svg index 7618250e..d5fe1092 100644 --- a/apps/www/public/logos/sandisk.svg +++ b/apps/www/public/logos/sandisk.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/apps/www/public/logos/tmobile.svg b/apps/www/public/logos/tmobile.svg index 6c78536b..6616be40 100644 --- a/apps/www/public/logos/tmobile.svg +++ b/apps/www/public/logos/tmobile.svg @@ -24,19 +24,19 @@ rdf:about="">image/svg+xml - - - - - - - - - - - - - + + + + + + + + + + + + + - \ No newline at end of file + diff --git a/apps/www/public/next.svg b/apps/www/public/next.svg index 5174b28c..5bb00d40 100644 --- a/apps/www/public/next.svg +++ b/apps/www/public/next.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/apps/www/public/vercel.svg b/apps/www/public/vercel.svg index 77053960..52151572 100644 --- a/apps/www/public/vercel.svg +++ b/apps/www/public/vercel.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/apps/www/public/window.svg b/apps/www/public/window.svg index b2b2a44f..d05e7a1b 100644 --- a/apps/www/public/window.svg +++ b/apps/www/public/window.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/apps/www/src/app/layout.tsx b/apps/www/src/app/layout.tsx index 9f72df53..2f78acef 100644 --- a/apps/www/src/app/layout.tsx +++ b/apps/www/src/app/layout.tsx @@ -7,7 +7,7 @@ import { ConditionalLayout } from "@/components/ConditionalLayout"; export const metadata: Metadata = { title: "Plano - Delivery Infrastructure for Agentic Apps", description: - "Build agents faster, and deliver them reliably to production - by offloading the critical plumbing work to Plano.", + "Build agents faster, and deliver them reliably to production - by offloading the critical plumbing work to Plano!", }; export default function RootLayout({ diff --git a/apps/www/src/components/NetworkAnimation.tsx b/apps/www/src/components/NetworkAnimation.tsx index 8fa40cfb..aa92c104 100644 --- a/apps/www/src/components/NetworkAnimation.tsx +++ b/apps/www/src/components/NetworkAnimation.tsx @@ -111,7 +111,7 @@ export function NetworkAnimation({ className }: NetworkAnimationProps) { return (

- 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.

@@ -107,4 +107,3 @@ export function Footer() { ); } - diff --git a/packages/ui/src/components/Logo.tsx b/packages/ui/src/components/Logo.tsx index 24dacbf6..b99f8890 100644 --- a/packages/ui/src/components/Logo.tsx +++ b/packages/ui/src/components/Logo.tsx @@ -15,4 +15,3 @@ export function Logo() {
); } - diff --git a/packages/ui/src/components/Navbar.tsx b/packages/ui/src/components/Navbar.tsx index 438cb93c..15d79f20 100644 --- a/packages/ui/src/components/Navbar.tsx +++ b/packages/ui/src/components/Navbar.tsx @@ -287,4 +287,3 @@ export function Navbar() { ); } - diff --git a/packages/ui/src/components/ui/button.tsx b/packages/ui/src/components/ui/button.tsx index d79a1f6b..95803d5b 100644 --- a/packages/ui/src/components/ui/button.tsx +++ b/packages/ui/src/components/ui/button.tsx @@ -63,4 +63,3 @@ function Button({ } export { Button, buttonVariants }; - diff --git a/packages/ui/src/components/ui/dialog.tsx b/packages/ui/src/components/ui/dialog.tsx index 0ebfe9f4..b9ce5dc3 100644 --- a/packages/ui/src/components/ui/dialog.tsx +++ b/packages/ui/src/components/ui/dialog.tsx @@ -141,4 +141,3 @@ export { DialogTitle, DialogTrigger, }; - diff --git a/packages/ui/src/index.ts b/packages/ui/src/index.ts index 8ae41722..82c9f182 100644 --- a/packages/ui/src/index.ts +++ b/packages/ui/src/index.ts @@ -20,4 +20,3 @@ export { // Utils export { cn } from "./lib/utils"; - diff --git a/packages/ui/src/lib/utils.ts b/packages/ui/src/lib/utils.ts index 6fcf374b..a5ef1935 100644 --- a/packages/ui/src/lib/utils.ts +++ b/packages/ui/src/lib/utils.ts @@ -4,4 +4,3 @@ import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } - diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index 4ddd44f2..d82e3e95 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -12,4 +12,3 @@ "include": ["src/**/*"], "exclude": ["node_modules", "dist"] } - diff --git a/turbo.json b/turbo.json index 129af309..0f409824 100644 --- a/turbo.json +++ b/turbo.json @@ -24,4 +24,3 @@ } } } -