fix: revert back to next 15.3

This reverts commit 28c4e97477.
This commit is contained in:
Aman Varshney
2025-08-29 17:09:32 +05:30
parent 28c4e97477
commit 9f309a8db3
10 changed files with 233 additions and 228 deletions

View File

@@ -5,7 +5,6 @@ const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
typedRoutes: true,
images: {
remotePatterns: [
{ protocol: "https", hostname: "pbs.twimg.com" },

View File

@@ -18,27 +18,27 @@
"@better-t-stack/backend": "workspace:*",
"@erquhart/convex-oss-stats": "^0.8.1",
"@number-flow/react": "^0.5.10",
"@opennextjs/cloudflare": "^1.6.5",
"@orama/orama": "^3.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"@opennextjs/cloudflare": "^1.6.3",
"@orama/orama": "^3.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-hover-card": "^1.1.14",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.26.2",
"convex": "^1.25.4",
"convex-helpers": "^0.1.104",
"date-fns": "^4.1.0",
"fumadocs-core": "15.7.5",
"fumadocs-mdx": "11.8.1",
"fumadocs-ui": "15.7.5",
"lucide-react": "^0.542.0",
"fumadocs-core": "15.6.7",
"fumadocs-mdx": "11.7.3",
"fumadocs-ui": "15.6.7",
"lucide-react": "^0.536.0",
"motion": "^12.23.12",
"next": "15.5.2",
"next": "15.3.5",
"next-themes": "^0.4.6",
"nuqs": "^2.5.1",
"nuqs": "^2.4.3",
"papaparse": "^5.5.3",
"posthog-js": "^1.261.0",
"radix-ui": "^1.4.3",
"posthog-js": "^1.258.5",
"radix-ui": "^1.4.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-tweet": "^3.2.2",
@@ -46,23 +46,23 @@
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.0",
"shiki": "^3.12.0",
"sonner": "^2.0.7",
"shiki": "^3.9.1",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/postcss": "^4.1.11",
"@types/mdx": "^2.0.13",
"@types/node": "24.3.0",
"@types/node": "24.1.0",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"eslint": "^9.34.0",
"eslint-config-next": "15.5.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"eslint": "^9.32.0",
"eslint-config-next": "15.4.5",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"tw-animate-css": "^1.3.7",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.6",
"typescript": "^5.9.2",
"wrangler": "^4.33.1"
"wrangler": "^4.27.0"
}
}

View File

@@ -1,10 +1,19 @@
"use client";
import { ExternalLink, File, Github, Monitor } from "lucide-react";
import type { Route } from "next";
import Image from "next/image";
import Link from "next/link";
export interface ShowcaseItemProps {
title: string;
description: string;
imageUrl: string;
liveUrl?: string;
sourceUrl?: string;
tags: string[];
index?: number;
}
export default function ShowcaseItem({
title,
description,
@@ -13,15 +22,7 @@ export default function ShowcaseItem({
sourceUrl,
tags,
index = 0,
}: {
title: string;
description: string;
imageUrl: string;
liveUrl?: string;
sourceUrl?: string;
tags: string[];
index?: number;
}) {
}: ShowcaseItemProps) {
const projectId = `PROJECT_${String(index + 1).padStart(3, "0")}`;
return (
@@ -77,7 +78,7 @@ export default function ShowcaseItem({
<div className="grid gap-2">
{liveUrl && (
<Link
href={liveUrl as Route}
href={liveUrl}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 rounded border border-border bg-primary/10 px-3 py-2 text-primary text-sm transition-all hover:bg-primary/20 hover:text-primary"
@@ -89,7 +90,7 @@ export default function ShowcaseItem({
)}
{sourceUrl && (
<Link
href={sourceUrl as Route}
href={sourceUrl}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 rounded border border-border px-3 py-2 text-muted-foreground text-sm transition-all hover:bg-muted/40 hover:text-foreground"

View File

@@ -1,6 +1,6 @@
import { cva, type VariantProps } from "class-variance-authority";
import { Slot as SlotPrimitive } from "radix-ui";
import * as React from "react";
import type * as React from "react";
import { cn } from "@/lib/utils";
@@ -35,25 +35,25 @@ const buttonVariants = cva(
},
);
const Button = React.forwardRef<
HTMLButtonElement,
React.ComponentProps<"button"> &
VariantProps<typeof buttonVariants> & {
asChild?: boolean;
}
>(({ className, variant, size, asChild = false, ...props }, ref) => {
function Button({
className,
variant,
size,
asChild = false,
...props
}: React.ComponentProps<"button"> &
VariantProps<typeof buttonVariants> & {
asChild?: boolean;
}) {
const Comp = asChild ? SlotPrimitive.Slot : "button";
return (
<Comp
data-slot="button"
className={cn(buttonVariants({ variant, size, className }))}
ref={ref}
{...props}
/>
);
});
Button.displayName = "Button";
}
export { Button, buttonVariants };

View File

@@ -80,7 +80,7 @@ const ChartStyle = ({ id, config }: { id: string; config: ChartConfig }) => {
return (
<style
// biome-ignore lint/security/noDangerouslySetInnerHtml: its fine
// biome-ignore lint/security/noDangerouslySetInnerHtml: This is safe as we control the content.
dangerouslySetInnerHTML={{
__html: Object.entries(THEMES)
.map(

View File

@@ -1,8 +1,7 @@
"use client";
import * as DialogPrimitive from "@radix-ui/react-dialog";
import { XIcon } from "lucide-react";
import type * as React from "react";
import { Dialog as DialogPrimitive } from "radix-ui";
import { cn } from "@/lib/utils";
@@ -49,11 +48,8 @@ function DialogOverlay({
function DialogContent({
className,
children,
showCloseButton = true,
...props
}: React.ComponentProps<typeof DialogPrimitive.Content> & {
showCloseButton?: boolean;
}) {
}: React.ComponentProps<typeof DialogPrimitive.Content>) {
return (
<DialogPortal data-slot="dialog-portal">
<DialogOverlay />
@@ -66,15 +62,10 @@ function DialogContent({
{...props}
>
{children}
{showCloseButton && (
<DialogPrimitive.Close
data-slot="dialog-close"
className="absolute top-4 right-4 rounded-xs opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0"
>
<XIcon />
<span className="sr-only">Close</span>
</DialogPrimitive.Close>
)}
<DialogPrimitive.Close className="absolute top-4 right-4 rounded-xs opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0">
<XIcon />
<span className="sr-only">Close</span>
</DialogPrimitive.Close>
</DialogPrimitive.Content>
</DialogPortal>
);

View File

@@ -1,6 +1,6 @@
"use client";
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
import { ScrollArea as ScrollAreaPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";

View File

@@ -1,6 +1,6 @@
"use client";
import * as SwitchPrimitive from "@radix-ui/react-switch";
import { Switch as SwitchPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";

View File

@@ -1,6 +1,6 @@
"use client";
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
import { Tooltip as TooltipPrimitive } from "radix-ui";
import type * as React from "react";
import { cn } from "@/lib/utils";