Save model on selecting model in dropdown. No extra save action reqd

- Remove now unnecessary button to Save in Card with dropdown
- Use toast to show success, failure (not working)
- Rename language to search, Move it to features section. Add icon to
  the card
This commit is contained in:
Debanjum Singh Solanky
2024-07-18 05:37:19 +05:30
parent 13292fc4ca
commit 00fa4fa0fa
2 changed files with 56 additions and 25 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Noto_Sans } from "next/font/google";
import "../globals.css";
import { Toaster } from "@/components/ui/toaster";
const inter = Noto_Sans({ subsets: ["latin"] });
@@ -30,6 +31,7 @@ export default function RootLayout({
object-src 'none';"></meta>
<body className={inter.className}>
{children}
<Toaster />
</body>
</html>
);