From dded3e821b254af8bae25cdbed1cec0eb471aefa Mon Sep 17 00:00:00 2001 From: ChrQR Date: Sun, 26 May 2024 00:11:55 +0200 Subject: [PATCH] added searchbar - no functionality as state management is next --- package.json | 14 ++++++++++---- src/app/_components/SearchBar.tsx | 5 +++++ src/app/layout.tsx | 6 +++++- 3 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 src/app/_components/SearchBar.tsx diff --git a/package.json b/package.json index 35ab83b..861388d 100644 --- a/package.json +++ b/package.json @@ -31,13 +31,17 @@ "react-dom": "^19.0.0-rc-935180c7e0-20240524", "tailwind-merge": "^2.3.0", "tailwindcss-animate": "^1.0.7", - "zod": "^3.23.8" + "zod": "^3.23.8", + "@types/react": "npm:types-react@rc", + "@types/react-dom": "npm:types-react-dom@rc" + }, + "overrides": { + "@types/react": "npm:types-react@rc", + "@types/react-dom": "npm:types-react-dom@rc" }, "devDependencies": { "@types/eslint": "^8.56.2", "@types/node": "^20.11.20", - "@types/react": "^18.2.57", - "@types/react-dom": "^18.2.19", "@typescript-eslint/eslint-plugin": "^7.1.1", "@typescript-eslint/parser": "^7.1.1", "drizzle-kit": "^0.21.0", @@ -49,7 +53,9 @@ "prettier": "^3.2.5", "prettier-plugin-tailwindcss": "^0.5.11", "tailwindcss": "^3.4.1", - "typescript": "^5.4.2" + "typescript": "^5.4.2", + "@types/react": "npm:types-react@rc", + "@types/react-dom": "npm:types-react-dom@rc" }, "ct3aMetadata": { "initVersion": "7.33.1" diff --git a/src/app/_components/SearchBar.tsx b/src/app/_components/SearchBar.tsx new file mode 100644 index 0000000..815c8b3 --- /dev/null +++ b/src/app/_components/SearchBar.tsx @@ -0,0 +1,5 @@ +import { Input } from "~/components/ui/input"; + +export default function SearchBar() { + return ; +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2aa5893..f430e6d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import { Inter as FontSans } from "next/font/google"; import { cn } from "~/lib/utils"; import TopNav from "./_components/FilterMenu"; import Filtermenu from "./_components/FilterMenu"; +import SearchBar from "./_components/SearchBar"; const fontSans = FontSans({ subsets: ["latin"], @@ -29,7 +30,10 @@ export default function RootLayout({ fontSans.variable, )} > - +
+ + +
{children}