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

@ -7,7 +7,7 @@ import { ConditionalLayout } from "@/components/ConditionalLayout";
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Plano - Delivery Infrastructure for Agentic Apps", title: "Plano - Delivery Infrastructure for Agentic Apps",
description: 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({ export default function RootLayout({

View file

@ -340,4 +340,3 @@ ls ../../demos/samples_python/*/arch_config.yaml
4. **Check error messages** - Make sure error messages are helpful 4. **Check error messages** - Make sure error messages are helpful
5. **Test edge cases** - Empty files, missing fields, invalid values 5. **Test edge cases** - Empty files, missing fields, invalid values
6. **Keep notes** - Document what works and what doesn't as you develop 6. **Keep notes** - Document what works and what doesn't as you develop

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -107,4 +107,3 @@ export function Footer() {
</footer> </footer>
); );
} }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -24,4 +24,3 @@
} }
} }
} }