bigger text, and fixing build errors

This commit is contained in:
codetorso 2024-07-18 18:52:35 +05:30
parent d7491e0dbc
commit c1596f4ead
4 changed files with 7 additions and 4 deletions

View file

@ -51,7 +51,7 @@ function QueryInput({
name="q"
cols={30}
rows={mini ? 2 : 4}
className="bg-transparent pt-2.5 text-base placeholder:text-[#9B9B9B] focus:text-gray-200 duration-200 tracking-[3%] outline-none resize-none w-full p-4"
className="bg-transparent pt-2.5 text-lg placeholder:text-[#9B9B9B] focus:text-gray-200 duration-200 tracking-[3%] outline-none resize-none w-full p-4"
placeholder="Ask your second brain..."
onKeyDown={(e) => {
if (e.key === "Enter" && !e.shiftKey) {

View file

@ -1,13 +1,13 @@
import "@repo/tailwind-config/globals.css";
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import { GeistSans } from "geist/font/sans";
import { GeistMono } from "geist/font/mono";
import { cn } from "@repo/ui/lib/utils";
import { Toaster } from "@repo/ui/shadcn/toaster";
const inter = Inter({ subsets: ["latin"] });
const poppins = Poppins({ subsets: ["latin"], weight: ["400", "500", "600", "700"] });
export const runtime = "edge";
@ -72,7 +72,7 @@ export default function RootLayout({
{/* TODO: when lightmode support is added, remove the 'dark' class from the body tag */}
<body
className={cn(
`${inter.className} dark`,
`${poppins.className} dark`,
GeistMono.variable,
GeistSans.variable,
)}

BIN
bun.lockb

Binary file not shown.

View file

@ -72,10 +72,13 @@
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.2",
"@tldraw/assets": "^2.2.0",
"ai": "^3.2.28",
"aws4fetch": "^1.0.18",
"cheerio": "^1.0.0-rc.12",
"drizzle-orm": "^0.32.0",
"framer-motion": "^11.3.6",
"geist": "^1.3.1",
"grammy": "^1.27.0",
"jose": "^5.6.3",
"katex": "^0.16.10",
"lucide-react": "^0.379.0",