fix flags validation and new stack architech design

This commit is contained in:
Aman Varshney
2025-04-19 21:02:55 +05:30
parent da087151c3
commit 1cb5c0caab
8 changed files with 1086 additions and 1158 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,6 @@
"use client";
import { motion } from "motion/react";
import Link from "next/link";
import StackArchitect from "../_components/StackArchitech";
export default function FullScreenStackArchitect() {
@@ -13,18 +12,8 @@ export default function FullScreenStackArchitect() {
transition={{ duration: 0.3 }}
className="w-full flex-1"
>
<StackArchitect fullscreen={true} />
<StackArchitect />
</motion.div>
<div className="flex-shrink-0 border-gray-200 border-t bg-blue-50/80 p-2 px-4 text-xs sm:p-3 dark:border-gray-800 dark:bg-blue-950/50">
<p className="text-center text-blue-700 dark:text-blue-400">
Tip: Use presets (), save (💾), reset (🔄), or copy (📋) the
command.{" "}
<Link href="/" className="underline hover:text-blue-500">
Exit Fullscreen
</Link>
</p>
</div>
</div>
);
}